6 function indexOf(arr, item, fromIndex) {
7 fromIndex = fromIndex || 0;
13 i = fromIndex < 0 ? len + fromIndex : fromIndex;
15 // we iterate over sparse items since there is no way to make it
16 // work properly on IE 7-8. see #64
17 if (arr[i] === item) {