Sha256: e8cc6994df67b7f02600d1f58674da807ec59db9964aaba2d9834f04b6f0baf1

Contents?: true

Size: 594 Bytes

Versions: 273

Compression:

Stored size: 594 Bytes

Contents

/**
 * A specialized version of `_.some` 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 any element passes the predicate check,
 *  else `false`.
 */
function arraySome(array, predicate) {
  var index = -1,
      length = array == null ? 0 : array.length;

  while (++index < length) {
    if (predicate(array[index], index, array)) {
      return true;
    }
  }
  return false;
}

module.exports = arraySome;

Version data entries

273 entries across 271 versions & 29 rubygems

Version Path
disco_app-0.18.2 test/dummy/node_modules/lodash/_arraySome.js
sumomo-0.8.15 data/sumomo/api_modules/node_modules/lodash/_arraySome.js
trusty-cms-5.0.7 node_modules/lodash/_arraySome.js
appmap-0.72.2 ./node_modules/lodash/_arraySome.js
trusty-cms-5.0.6 node_modules/lodash/_arraySome.js
appmap-0.72.1 ./node_modules/lodash/_arraySome.js
appmap-0.72.0 ./node_modules/lodash/_arraySome.js
trusty-cms-5.0.5 node_modules/lodash/_arraySome.js
trusty-cms-5.0.4 node_modules/lodash/_arraySome.js
appmap-0.71.0 ./node_modules/lodash/_arraySome.js
disco_app-0.16.1 test/dummy/node_modules/lodash/_arraySome.js
appmap-0.70.2 ./node_modules/lodash/_arraySome.js
sumomo-0.8.14 data/sumomo/api_modules/node_modules/lodash/_arraySome.js
appmap-0.70.1 ./node_modules/lodash/_arraySome.js
appmap-0.70.0 ./node_modules/lodash/_arraySome.js
appmap-0.69.0 ./node_modules/lodash/_arraySome.js
sumomo-0.8.13 data/sumomo/api_modules/node_modules/lodash/_arraySome.js
appmap-0.68.2 ./node_modules/lodash/_arraySome.js
appmap-0.68.1 ./node_modules/lodash/_arraySome.js
disco_app-0.15.2 test/dummy/node_modules/lodash/_arraySome.js