arrayIndexOf.js 249 B

123456789101112
  1. function arrayIndexOf (list, val) {
  2. if (list.indexOf) {
  3. return list.indexOf(val)
  4. }
  5. for (var index = 0, len = list.length; index < len; index++) {
  6. if (val === list[index]) {
  7. return index
  8. }
  9. }
  10. }
  11. module.exports = arrayIndexOf