mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-23 02:23:26 +01:00
10 lines
191 B
JavaScript
10 lines
191 B
JavaScript
'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;
|
|
};
|