📁
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: index.js
'use strict'; const isObject = val => { return typeof val === 'function' || (typeof val === 'object' && val !== null && !Array.isArray(val)); }; const isValidKey = key => { return key !== '__proto__' && key !== 'constructor' && key !== 'prototype'; }; const mixinDeep = (target, ...rest) => { for (let obj of rest) { if (isObject(obj)) { for (let key in obj) { if (isValidKey(key)) { mixin(target, obj[key], key); } } } } return target; }; function mixin(target, val, key) { let obj = target[key]; if (isObject(val) && isObject(obj)) { mixinDeep(obj, val); } else { target[key] = val; } } /** * Expose mixinDeep * @type {Function} */ module.exports = mixinDeep;
Save