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 : 3.135.246.88
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-object /
Delete
Unzip
Name
Size
Permission
Date
Action
node_modules
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
LICENSE
1.06
KB
-rw-r--r--
2015-02-25 11:01
README.md
2.76
KB
-rw-r--r--
2015-07-05 05:54
index.js
642
B
-rw-r--r--
2015-08-21 06:04
package.json
2.01
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
'use strict'; var isObject = require('is-extendable'); var forIn = require('for-in'); function mixin(target, objects) { if (!isObject(target)) { throw new TypeError('mixin-object expects the first argument to be an object.'); } 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 {*} `value` * @param {String} `key` */ function copy(value, key) { this[key] = value; } /** * Expose `mixin` */ module.exports = mixin;