Sha256: 88672930cbb2e98559d2b4527226da4d773001b4b15c0fd629b9bc8069f5522f

Contents?: true

Size: 525 Bytes

Versions: 153

Compression:

Stored size: 525 Bytes

Contents

/**
 * A specialized version of `_.forEachRight` for arrays without support for
 * callback shorthands and `this` binding.
 *
 * @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.length;

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

module.exports = arrayEachRight;

Version data entries

153 entries across 80 versions & 8 rubygems

Version Path
trusty-festivity-extension-2.5.8 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.8 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.7 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.7 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.6 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.6 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/arrayEachRight.js
xcodebuild-helper-1.2.3 externals/ios-sim-master/node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.5 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.5 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayEachRight.js
blackboard-3.1.9 lib/site_template/node_modules/opt-merger/node_modules/lodash/internal/arrayEachRight.js
blackboard-3.1.9 lib/site_template/node_modules/easy-extender/node_modules/lodash/internal/arrayEachRight.js
babel-schmooze-sprockets-0.1.1 node_modules/lodash/internal/arrayEachRight.js
babel-schmooze-sprockets-0.1.0 node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.4 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.4 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.3 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.3 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/arrayEachRight.js
babel-schmooze-sprockets-0.1.0.alpha.3 node_modules/lodash/internal/arrayEachRight.js
babel-schmooze-sprockets-0.1.0.alpha.2 node_modules/lodash/internal/arrayEachRight.js
trusty-festivity-extension-2.5.2 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayEachRight.js