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.137.152.81
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('numeric short args', function (t) { t.plan(2); t.deepEqual(parse([ '-n123' ]), { n: 123, _: [] }); t.deepEqual( parse([ '-123', '456' ]), { 1: true, 2: true, 3: 456, _: [] } ); }); test('short', function (t) { t.deepEqual( parse([ '-b' ]), { b : true, _ : [] }, 'short boolean' ); t.deepEqual( parse([ 'foo', 'bar', 'baz' ]), { _ : [ 'foo', 'bar', 'baz' ] }, 'bare' ); t.deepEqual( parse([ '-cats' ]), { c : true, a : true, t : true, s : true, _ : [] }, 'group' ); t.deepEqual( parse([ '-cats', 'meow' ]), { c : true, a : true, t : true, s : 'meow', _ : [] }, 'short group next' ); t.deepEqual( parse([ '-h', 'localhost' ]), { h : 'localhost', _ : [] }, 'short capture' ); t.deepEqual( parse([ '-h', 'localhost', '-p', '555' ]), { h : 'localhost', p : 555, _ : [] }, 'short captures' ); t.end(); }); test('mixed short bool and capture', function (t) { t.same( parse([ '-h', 'localhost', '-fp', '555', 'script.js' ]), { f : true, p : 555, h : 'localhost', _ : [ 'script.js' ] } ); t.end(); }); test('short and long', function (t) { t.deepEqual( parse([ '-h', 'localhost', '-fp', '555', 'script.js' ]), { f : true, p : 555, h : 'localhost', _ : [ 'script.js' ] } ); t.end(); });