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 test = require('tape'); var parse = require('../'); test('boolean default true', function (t) { var argv = parse([], { boolean: 'sometrue', default: { sometrue: true } }); t.equal(argv.sometrue, true); t.end(); }); test('boolean default false', function (t) { var argv = parse([], { boolean: 'somefalse', default: { somefalse: false } }); t.equal(argv.somefalse, false); t.end(); }); test('boolean default to null', function (t) { var argv = parse([], { boolean: 'maybe', default: { maybe: null } }); t.equal(argv.maybe, null); var argv = parse(['--maybe'], { boolean: 'maybe', default: { maybe: null } }); t.equal(argv.maybe, true); t.end(); })