📁
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: date.js
const {stringifyString} = require('yaml/util') module.exports = { tag: '!date', identify: value => value instanceof Date, resolve (doc, cst) { const src = cst.strValue const match = src.match(/^(\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z)$/) if (!match) throw new Error(`Invalid date string: ${src}`) return new Date(src) }, stringify (item, ctx, onComment, onChompKeep) { const value = item.value.toISOString() return stringifyString({ value }, ctx, onComment, onChompKeep) } }
Save