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.188.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
relateurl /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
parse
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
relate
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
util
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
constants.js
167
B
-rw-r--r--
2014-08-05 01:56
format.js
3.35
KB
-rw-r--r--
2014-12-16 02:01
index.js
1.76
KB
-rw-r--r--
2014-12-16 02:27
options.js
845
B
-rw-r--r--
2014-12-16 02:30
Save
Rename
"use strict"; var objUtils = require("./util/object"); function getOptions(options, defaults) { if ( objUtils.isPlainObject(options) ) { var newOptions = {}; for (var i in defaults) { if ( defaults.hasOwnProperty(i) ) { if (options[i] !== undefined) { newOptions[i] = mergeOption(options[i], defaults[i]); } else { newOptions[i] = defaults[i]; } } } return newOptions; } else { return defaults; } } function mergeOption(newValues, defaultValues) { if (defaultValues instanceof Object && newValues instanceof Object) { if (defaultValues instanceof Array && newValues instanceof Array) { return defaultValues.concat(newValues); } else { return objUtils.shallowMerge(newValues, defaultValues); } } return newValues; } module.exports = getOptions;