📁
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 { globby, globbySync, globbyStream, generateGlobTasks, generateGlobTasksSync, ignoreFiles, isDynamicPattern, isGitIgnored, isGitIgnoredSync } = require("./globby.cjs"); const res = (...args) => { return globby(...args); } // old API res.sync = globbySync; res.stream = globbyStream; res.hasMagic = isDynamicPattern; res.gitignore = isGitIgnored; res.gitignore.sync = isGitIgnoredSync; // identical name res.generateGlobTasks = generateGlobTasks; // This is for package which sources are ECMA and build files are // Commonjs res.globby = globby; // new API res.globbySync = globbySync; res.globbyStream = globbyStream; res.generateGlobTasksSync = generateGlobTasksSync; res.isDynamicPattern = isDynamicPattern; res.ignoreFiles = ignoreFiles; res.isGitIgnored = isGitIgnored; module.exports = res;
Save