UNPKG

225 BJavaScriptView Raw
1export function every(source, predicate) {
2 let i = 0;
3 for (const item of source) {
4 if (!predicate(item, i++)) {
5 return false;
6 }
7 }
8 return true;
9}
10
11//# sourceMappingURL=every.mjs.map