![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/indexes-of/ |
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() })