Sha256: 3410df94969c310f7e3146d694e40d7d2ea20ed85f508057a8398bb870906f7d

Contents?: true

Size: 528 Bytes

Versions: 273

Compression:

Stored size: 528 Bytes

Contents

/**
 * A specialized version of `_.forEachRight` for arrays without support for
 * iteratee shorthands.
 *
 * @private
 * @param {Array} [array] The array to iterate over.
 * @param {Function} iteratee The function invoked per iteration.
 * @returns {Array} Returns `array`.
 */
function arrayEachRight(array, iteratee) {
  var length = array == null ? 0 : array.length;

  while (length--) {
    if (iteratee(array[length], length, array) === false) {
      break;
    }
  }
  return array;
}

module.exports = arrayEachRight;

Version data entries

273 entries across 271 versions & 29 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/lodash/_arrayEachRight.js
immosquare-cleaner-0.1.59 node_modules/lodash/_arrayEachRight.js
immosquare-cleaner-0.1.58 node_modules/lodash/_arrayEachRight.js
immosquare-cleaner-0.1.57 node_modules/lodash/_arrayEachRight.js
immosquare-cleaner-0.1.56 node_modules/lodash/_arrayEachRight.js
immosquare-cleaner-0.1.55 node_modules/lodash/_arrayEachRight.js
immosquare-cleaner-0.1.54 node_modules/lodash/_arrayEachRight.js
immosquare-cleaner-0.1.53 node_modules/lodash/_arrayEachRight.js
immosquare-cleaner-0.1.52 node_modules/lodash/_arrayEachRight.js
trusty-cms-6.3.1 node_modules/lodash/_arrayEachRight.js
immosquare-cleaner-0.1.51 node_modules/lodash/_arrayEachRight.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/lodash/_arrayEachRight.js
clapton-0.0.26 lib/clapton/javascripts/node_modules/lodash/_arrayEachRight.js
clapton-0.0.25 lib/clapton/javascripts/node_modules/lodash/_arrayEachRight.js
immosquare-cleaner-0.1.50 node_modules/lodash/_arrayEachRight.js
clapton-0.0.24 lib/clapton/javascripts/node_modules/lodash/_arrayEachRight.js
clapton-0.0.23 lib/clapton/javascripts/node_modules/lodash/_arrayEachRight.js
clapton-0.0.22 lib/clapton/javascripts/node_modules/lodash/_arrayEachRight.js
clapton-0.0.21 lib/clapton/javascripts/node_modules/lodash/_arrayEachRight.js
clapton-0.0.20 lib/clapton/javascripts/node_modules/lodash/_arrayEachRight.js