📁
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.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = _default; var _pluginSyntaxObjectRestSpread = require("@babel/plugin-syntax-object-rest-spread"); function _default({ types: t }) { return { inherits: _pluginSyntaxObjectRestSpread.default, visitor: { CallExpression(path) { if (!path.get("callee").matchesPattern("Object.assign")) return; const args = path.get("arguments"); if (args.length === 0) return; const [objPath] = args; if (!objPath.isObjectExpression()) return; const obj = objPath.node; const { properties } = obj; for (let i = 1; i < args.length; i++) { const arg = args[i]; const { node } = arg; if (t.isObjectExpression(node)) { properties.push(...node.properties); } else { properties.push(t.spreadElement(node)); } } path.replaceWith(obj); } } }; } //# sourceMappingURL=index.js.map
Save