7 lines
153 B
JavaScript
Raw Normal View History

2019-09-13 11:27:52 +07:00
module.exports = function (ary, item) {
var i = -1, indexes = []
while((i = ary.indexOf(item, i + 1)) !== -1)
indexes.push(i)
return indexes
}