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.144.237.87
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
yargs-parser /
Delete
Unzip
Name
Size
Permission
Date
Action
build
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
CHANGELOG.md
14.68
KB
-rw-rw-r--
2022-08-30 11:49
LICENSE.txt
731
B
-rw-rw-r--
2022-08-30 11:49
README.md
11.64
KB
-rw-rw-r--
2022-08-30 11:49
browser.js
1016
B
-rw-rw-r--
2022-08-30 11:49
package.json
2.4
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
// Main entrypoint for ESM web browser environments. Avoids using Node.js // specific libraries, such as "path". // // TODO: figure out reasonable web equivalents for "resolve", "normalize", etc. import { camelCase, decamelize, looksLikeNumber } from './build/lib/string-utils.js' import { YargsParser } from './build/lib/yargs-parser.js' const parser = new YargsParser({ cwd: () => { return '' }, format: (str, arg) => { return str.replace('%s', arg) }, normalize: (str) => { return str }, resolve: (str) => { return str }, require: () => { throw Error('loading config from files not currently supported in browser') }, env: () => {} }) const yargsParser = function Parser (args, opts) { const result = parser.parse(args.slice(), opts) return result.argv } yargsParser.detailed = function (args, opts) { return parser.parse(args.slice(), opts) } yargsParser.camelCase = camelCase yargsParser.decamelize = decamelize yargsParser.looksLikeNumber = looksLikeNumber export default yargsParser