mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-19 17:48:36 +00:00
6 lines
153 B
JavaScript
Vendored
6 lines
153 B
JavaScript
Vendored
module.exports = function (ary, item) {
|
|
var i = -1, indexes = []
|
|
while((i = ary.indexOf(item, i + 1)) !== -1)
|
|
indexes.push(i)
|
|
return indexes
|
|
}
|