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.135.246.88
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
indexes-of /
Delete
Unzip
Name
Size
Permission
Date
Action
.npmignore
14
B
-rw-r--r--
2013-11-17 02:25
LICENSE
1.05
KB
-rw-r--r--
2013-11-16 08:48
README.md
320
B
-rw-r--r--
2013-11-16 09:01
index.js
153
B
-rw-r--r--
2013-11-16 09:01
package.json
1.28
KB
-rw-r--r--
2021-02-04 21:24
test.js
689
B
-rw-r--r--
2013-11-16 09:03
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() })