| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1 1 25 25 60 14 14 25 1 | define(function () {
/**
* Array every
* @version 0.4.0 (2012/10/30)
*/
function every(arr, callback, thisObj) {
var result = true,
i = -1,
n = arr.length >>> 0;
while (++i < n) {
// we iterate over sparse items since there is no way to make it
// work properly on IE 7-8. see #64
if (!callback.call(thisObj, arr[i], i, arr) ) {
result = false;
break;
}
}
return result;
}
return every;
});
|