blob: c0b440507745bfb29cec27074f4421fba6a992a3 [file] [log] [blame]
'use strict';
module.exports = function some(array, predicate) {
for (var i = 0; i < array.length; i += 1) {
if (predicate(array[i], i, array)) {
return true;
}
}
return false;
};