📁
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: maybeParse.cjs
const babel = require("./babel-core.cjs"); const convert = require("../convert/index.cjs"); const { getVisitorKeys, getTokLabels } = require("./ast-info.cjs"); const extractParserOptionsPlugin = require("./extract-parser-options-plugin.cjs"); const ref = {}; let extractParserOptionsConfigItem; const MULTIPLE_OVERRIDES = /More than one plugin attempted to override parsing/; module.exports = function maybeParse(code, options) { if (!extractParserOptionsConfigItem) { extractParserOptionsConfigItem = babel.createConfigItem([extractParserOptionsPlugin, ref], { dirname: __dirname, type: "plugin" }); } const { plugins } = options; options.plugins = plugins.concat(extractParserOptionsConfigItem); try { return { parserOptions: babel.parseSync(code, options), ast: null }; } catch (err) { if (!MULTIPLE_OVERRIDES.test(err.message)) { throw err; } } options.plugins = plugins; let ast; try { ast = babel.parseSync(code, options); } catch (err) { throw convert.error(err); } return { ast: convert.ast(ast, code, getTokLabels(), getVisitorKeys()), parserOptions: null }; }; //# sourceMappingURL=maybeParse.cjs.map
Save