feige
2023-12-12 d855e84e98c066c5f21bd294a1d1d919c9383595
1
2
3
4
5
6
7
8
9
10
'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;
};