notes/node_modules/indexes-of/index.js

7 lines
153 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
module.exports = function (ary, item) {
var i = -1, indexes = []
while((i = ary.indexOf(item, i + 1)) !== -1)
indexes.push(i)
return indexes
}