Sha256: c9de9f02349af14ef1c23f0579c1b24f0756c0776260a3942f9705eec284960c
Contents?: true
Size: 597 Bytes
Versions: 273
Compression:
Stored size: 597 Bytes
Contents
/** * A specialized version of `_.every` for arrays without support for * iteratee shorthands. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} predicate The function invoked per iteration. * @returns {boolean} Returns `true` if all elements pass the predicate check, * else `false`. */ function arrayEvery(array, predicate) { var index = -1, length = array == null ? 0 : array.length; while (++index < length) { if (!predicate(array[index], index, array)) { return false; } } return true; } module.exports = arrayEvery;
Version data entries
273 entries across 271 versions & 29 rubygems