1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| "use strict";
|
| const babelP = import("./lib/index.js");
| let babel = null;
| Object.defineProperty(exports, "__ initialize @babel/core cjs proxy __", {
| set(val) {
| babel = val;
| },
| });
|
| const functionNames = [
| "createConfigItem",
| "loadPartialConfig",
| "loadOptions",
| "transform",
| "transformFile",
| "transformFromAst",
| "parse",
| ];
| const propertyNames = ["types", "tokTypes", "traverse", "template", "version"];
|
| for (const name of functionNames) {
| exports[name] = function (...args) {
| babelP.then(babel => {
| babel[name](...args);
| });
| };
| exports[`${name}Async`] = function (...args) {
| return babelP.then(babel => babel[`${name}Async`](...args));
| };
| exports[`${name}Sync`] = function (...args) {
| if (!babel) throw notLoadedError(`${name}Sync`, "callable");
| return babel[`${name}Sync`](...args);
| };
| }
|
| for (const name of propertyNames) {
| Object.defineProperty(exports, name, {
| get() {
| if (!babel) throw notLoadedError(name, "accessible");
| return babel[name];
| },
| });
| }
|
| function notLoadedError(name, keyword) {
| return new Error(
| `The \`${name}\` export of @babel/core is only ${keyword}` +
| ` from the CommonJS version after that the ESM version is loaded.`
| );
| }
|
|