%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
"use strict"; const babelP = import("./lib/index.js"); let babel = null; Object.defineProperty(exports, "__ initialize @babel/core cjs proxy __", { set(val) { babel = val; }, }); exports.version = require("./package.json").version; const functionNames = [ "createConfigItem", "loadPartialConfig", "loadOptions", "transform", "transformFile", "transformFromAst", "parse", ]; const propertyNames = [ "buildExternalHelpers", "types", "tokTypes", "traverse", "template", ]; 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.` ); }