source: node_modules/lodash/_baseEachRight.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 491 bytes
RevLine 
[d24f17c]1var baseForOwnRight = require('./_baseForOwnRight'),
2 createBaseEach = require('./_createBaseEach');
3
4/**
5 * The base implementation of `_.forEachRight` without support for iteratee shorthands.
6 *
7 * @private
8 * @param {Array|Object} collection The collection to iterate over.
9 * @param {Function} iteratee The function invoked per iteration.
10 * @returns {Array|Object} Returns `collection`.
11 */
12var baseEachRight = createBaseEach(baseForOwnRight, true);
13
14module.exports = baseEachRight;
Note: See TracBrowser for help on using the repository browser.