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.147.67.34
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 /
argparse /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
action
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
argument
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
help
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
action.js
4.55
KB
-rw-r--r--
2016-11-09 11:59
action_container.js
14.7
KB
-rw-r--r--
2016-09-29 12:11
argparse.js
618
B
-rw-r--r--
2015-02-17 05:35
argument_parser.js
34.4
KB
-rw-r--r--
2016-09-29 12:17
const.js
340
B
-rw-r--r--
2016-01-17 07:56
namespace.js
1.78
KB
-rw-r--r--
2016-02-06 08:37
utils.js
1.25
KB
-rw-r--r--
2016-02-05 12:50
Save
Rename
/** * class Namespace * * Simple object for storing attributes. Implements equality by attribute names * and values, and provides a simple string representation. * * See also [original guide][1] * * [1]:http://docs.python.org/dev/library/argparse.html#the-namespace-object **/ 'use strict'; var $$ = require('./utils'); /** * new Namespace(options) * - options(object): predefined propertis for result object * **/ var Namespace = module.exports = function Namespace(options) { $$.extend(this, options); }; /** * Namespace#isset(key) -> Boolean * - key (string|number): property name * * Tells whenever `namespace` contains given `key` or not. **/ Namespace.prototype.isset = function (key) { return $$.has(this, key); }; /** * Namespace#set(key, value) -> self * -key (string|number|object): propery name * -value (mixed): new property value * * Set the property named key with value. * If key object then set all key properties to namespace object **/ Namespace.prototype.set = function (key, value) { if (typeof (key) === 'object') { $$.extend(this, key); } else { this[key] = value; } return this; }; /** * Namespace#get(key, defaultValue) -> mixed * - key (string|number): property name * - defaultValue (mixed): default value * * Return the property key or defaulValue if not set **/ Namespace.prototype.get = function (key, defaultValue) { return !this[key] ? defaultValue : this[key]; }; /** * Namespace#unset(key, defaultValue) -> mixed * - key (string|number): property name * - defaultValue (mixed): default value * * Return data[key](and delete it) or defaultValue **/ Namespace.prototype.unset = function (key, defaultValue) { var value = this[key]; if (value !== null) { delete this[key]; return value; } return defaultValue; };