Sha256: a3841ae7ed84cfd27127dd62e11f83630e29be92254f8fa78c5414d4f2ff80dd

Contents?: true

Size: 689 Bytes

Versions: 70

Compression:

Stored size: 689 Bytes

Contents

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()
})

Version data entries

70 entries across 69 versions & 14 rubygems

Version Path
boring_generators-0.15.0 tmp/templates/app_template/node_modules/indexes-of/test.js
boring_generators-0.14.0 tmp/templates/app_template/node_modules/indexes-of/test.js
optimacms-0.1.61 spec/dummy/node_modules/indexes-of/test.js
boring_generators-0.13.0 tmp/templates/app_template/node_modules/indexes-of/test.js
boring_generators-0.12.0 tmp/templates/app_template/node_modules/indexes-of/test.js
disco_app-0.18.0 test/dummy/node_modules/indexes-of/test.js
disco_app-0.18.2 test/dummy/node_modules/indexes-of/test.js
trusty-cms-5.0.7 node_modules/indexes-of/test.js
trusty-cms-5.0.6 node_modules/indexes-of/test.js
trusty-cms-5.0.5 node_modules/indexes-of/test.js
trusty-cms-5.0.4 node_modules/indexes-of/test.js
disco_app-0.16.1 test/dummy/node_modules/indexes-of/test.js
disco_app-0.15.2 test/dummy/node_modules/indexes-of/test.js
trusty-cms-5.0.3 node_modules/indexes-of/test.js
trusty-cms-5.0.2 node_modules/indexes-of/test.js
disco_app-0.18.4 test/dummy/node_modules/indexes-of/test.js
disco_app-0.18.1 test/dummy/node_modules/indexes-of/test.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/indexes-of/test.js
disco_app-0.14.0 test/dummy/node_modules/indexes-of/test.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/indexes-of/test.js