mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
26 lines
786 B
JavaScript
26 lines
786 B
JavaScript
import arrayEachRight from './.internal/arrayEachRight.js';
|
|
import baseEachRight from './.internal/baseEachRight.js';
|
|
|
|
/**
|
|
* This method is like `forEach` except that it iterates over elements of
|
|
* `collection` from right to left.
|
|
*
|
|
* @since 2.0.0
|
|
* @alias eachRight
|
|
* @category Collection
|
|
* @param {Array|Object} collection The collection to iterate over.
|
|
* @param {Function} iteratee The function invoked per iteration.
|
|
* @returns {Array|Object} Returns `collection`.
|
|
* @see forEach
|
|
* @example
|
|
*
|
|
* forEachRight([1, 2], value => console.log(value));
|
|
* // => Logs `2` then `1`.
|
|
*/
|
|
function forEachRight(collection, iteratee) {
|
|
const func = Array.isArray(collection) ? arrayEachRight : baseEachRight;
|
|
return func(collection, iteratee);
|
|
}
|
|
|
|
export default forEachRight;
|