wallet-core/node_modules/lodash/_arrayEachRight.js

22 lines
528 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
/**
* 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) {
2016-11-03 01:33:53 +01:00
var length = array == null ? 0 : array.length;
2016-10-10 03:43:44 +02:00
while (length--) {
if (iteratee(array[length], length, array) === false) {
break;
}
}
return array;
}
module.exports = arrayEachRight;