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.140.201.179
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 /
minimist /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
all_bool.js
756
B
-rw-rw-r--
2022-08-30 11:49
bool.js
4.11
KB
-rw-rw-r--
2022-08-30 11:49
dash.js
980
B
-rw-rw-r--
2022-08-30 11:49
default_bool.js
778
B
-rw-rw-r--
2022-08-30 11:49
dotted.js
588
B
-rw-rw-r--
2022-08-30 11:49
kv_short.js
376
B
-rw-rw-r--
2022-08-30 11:49
long.js
779
B
-rw-rw-r--
2022-08-30 11:49
num.js
909
B
-rw-rw-r--
2022-08-30 11:49
parse.js
4.5
KB
-rw-rw-r--
2022-08-30 11:49
parse_modified.js
238
B
-rw-rw-r--
2022-08-30 11:49
proto.js
1.75
KB
-rw-rw-r--
2022-08-30 11:49
short.js
1.56
KB
-rw-rw-r--
2022-08-30 11:49
stop_early.js
328
B
-rw-rw-r--
2022-08-30 11:49
unknown.js
2.48
KB
-rw-rw-r--
2022-08-30 11:49
whitespace.js
191
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
var parse = require('../'); var test = require('tape'); test('flag boolean true (default all --args to boolean)', function (t) { var argv = parse(['moo', '--honk', 'cow'], { boolean: true }); t.deepEqual(argv, { honk: true, _: ['moo', 'cow'] }); t.deepEqual(typeof argv.honk, 'boolean'); t.end(); }); test('flag boolean true only affects double hyphen arguments without equals signs', function (t) { var argv = parse(['moo', '--honk', 'cow', '-p', '55', '--tacos=good'], { boolean: true }); t.deepEqual(argv, { honk: true, tacos: 'good', p: 55, _: ['moo', 'cow'] }); t.deepEqual(typeof argv.honk, 'boolean'); t.end(); });