7 lines
153 B
JavaScript
Raw Normal View History

2021-02-11 21:31:41 +08:00
module.exports = function (ary, item) {
var i = -1, indexes = []
while((i = ary.indexOf(item, i + 1)) !== -1)
indexes.push(i)
return indexes
}