⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
@babel
/
core
/
View File Name :
cjs-proxy.cjs
"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.` ); }