Your IP : 216.73.216.124


Current Path : /var/www/html/mygovuc/node_modules/indexes-of/
Upload File :
Current File : /var/www/html/mygovuc/node_modules/indexes-of/index.js

module.exports = function (ary, item) {
  var i = -1, indexes = []
  while((i = ary.indexOf(item, i + 1)) !== -1)
    indexes.push(i)
  return indexes
}