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.217.230.80
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 /
indexes-of /
Delete
Unzip
Name
Size
Permission
Date
Action
.npmignore
14
B
-rw-rw-r--
2022-08-30 11:49
LICENSE
1.05
KB
-rw-rw-r--
2022-08-30 11:49
README.md
320
B
-rw-rw-r--
2022-08-30 11:49
index.js
153
B
-rw-rw-r--
2022-08-30 11:49
package.json
479
B
-rw-rw-r--
2022-08-30 11:49
test.js
689
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
var tape = require('tape') var indexes = require('./') tape('indexes of - 2 matches', function (t) { var x = indexes([1,2,3, 2,4,5,9,8,0], 2) t.deepEqual(x, [1,3]) t.end() }) tape('indexes of - 1 match', function (t) { var x = indexes([1,2,3, 2,4,5,9,8,0], 2) t.deepEqual(x, [1,3]) t.end() }) tape('indexes of - empty', function (t) { var x = indexes([1,2,3, 2,4,5,9,8,0], 24) t.deepEqual(x, []) t.end() }) tape('indexes of - empty', function (t) { var x = indexes([8,8,8,8,8,8,8], 8) t.deepEqual(x, [0,1,2,3,4,5,6]) t.end() }) tape('indexes of - string', function (t) { var x = indexes('foo bar baz foo', 'foo') t.deepEqual(x, [0, 12]) t.end() })