1 define(['../function/makeIterator_'], function (makeIterator) {
6 function every(arr, callback, thisObj) {
7 callback = makeIterator(callback, thisObj);
13 var i = -1, len = arr.length;
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 (!callback(arr[i], i, arr) ) {