astro-ghostcms/.pnpm-store/v3/files/b9/6dd45a43e38a55f90f52e361088...

11 lines
191 B
Plaintext

'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;
};