Opal-Estate-Pro/node_modules/indexes-of/index.js

7 lines
153 B
JavaScript
Raw Normal View History

2019-09-13 04:44:33 +02:00
module.exports = function (ary, item) {
var i = -1, indexes = []
while((i = ary.indexOf(item, i + 1)) !== -1)
indexes.push(i)
return indexes
}