📁
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: regexp.js
const {stringifyString} = require('yaml/util') module.exports = { identify: value => value instanceof RegExp, tag: '!re', resolve (doc, cst) { const match = cst.strValue.match(/^\/([\s\S]+)\/([gimuy]*)$/) if (!match) throw new Error(`Invalid Regular Expression: ${cst.strValue}`) return new RegExp(match[1], match[2]) }, stringify (item, ctx, onComment, onChompKeep) { const value = item.value.toString() return stringifyString({ value }, ctx, onComment, onChompKeep) } }
Save