coronamap/node_modules/es-abstract/helpers/every.js
2022-08-06 08:12:21 -07:00

10 lines
193 B
JavaScript

'use strict';
module.exports = function every(array, predicate) {
for (var i = 0; i < array.length; i += 1) {
if (!predicate(array[i], i, array)) {
return false;
}
}
return true;
};