blob: c0b440507745bfb29cec27074f4421fba6a992a3 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3module.exports = function some(array, predicate) {
4 for (var i = 0; i < array.length; i += 1) {
5 if (predicate(array[i], i, array)) {
6 return true;
7 }
8 }
9 return false;
10};