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 : 52.14.238.102
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 /
yargs /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
locales
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
node_modules
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
CHANGELOG.md
68.58
KB
-rw-r--r--
2017-06-12 23:26
LICENSE
1.17
KB
-rw-r--r--
2017-01-07 20:44
README.md
3.27
KB
-rw-r--r--
2017-06-12 23:05
completion.sh.hbs
751
B
-rw-r--r--
2017-01-07 20:44
index.js
853
B
-rw-r--r--
2017-03-27 07:10
package.json
2.52
KB
-rw-r--r--
2021-02-04 21:24
yargs.js
32.41
KB
-rw-r--r--
2017-05-01 16:54
Save
Rename
// classic singleton yargs API, to use yargs // without running as a singleton do: // require('yargs/yargs')(process.argv.slice(2)) const yargs = require('./yargs') Argv(process.argv.slice(2)) module.exports = Argv function Argv (processArgs, cwd) { const argv = yargs(processArgs, cwd, require) singletonify(argv) return argv } /* Hack an instance of Argv with process.argv into Argv so people can do require('yargs')(['--beeble=1','-z','zizzle']).argv to parse a list of args and require('yargs').argv to get a parsed version of process.argv. */ function singletonify (inst) { Object.keys(inst).forEach(function (key) { if (key === 'argv') { Argv.__defineGetter__(key, inst.__lookupGetter__(key)) } else { Argv[key] = typeof inst[key] === 'function' ? inst[key].bind(inst) : inst[key] } }) }