📁
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: domain.js
const { YAMLMap } = require('yaml/types') const { parseMap } = require('yaml/util') const tag = '!domain' class YAMLDomain extends YAMLMap { get tag () { return tag } set tag (_) {} toJSON(_, ctx) { return require('domain').create() } } const resolve = (doc, cst) => Object.assign(new YAMLDomain(), parseMap(doc, cst)) const createNode = (schema, error, ctx) => new YAMLDomain() module.exports = { identify: value => value && typeof value === 'object' && value.constructor && value.constructor.name === 'Domain' ? value instanceof (require('domain').Domain) : false, tag, resolve, createNode, }
Save