📁
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 convertTokens = require("./convertTokens.cjs"); const convertComments = require("./convertComments.cjs"); const convertAST = require("./convertAST.cjs"); exports.ast = function convert(ast, code, tokLabels, visitorKeys) { ast.tokens = convertTokens(ast.tokens, code, tokLabels); convertComments(ast.comments); convertAST(ast, visitorKeys); return ast; }; exports.error = function convertError(err) { if (err instanceof SyntaxError) { err.lineNumber = err.loc.line; err.column = err.loc.column; } return err; }; //# sourceMappingURL=index.cjs.map
Save