66609ec1020ccd018ccec122eb3a65ff067deb228a7189a518934b54d2cd85c393c1407288ac5a6d2b122f4ef01d94fc626a1db168c7f14a809db189311e67 491 B

1234567891011121314
  1. var baseForOwnRight = require('./_baseForOwnRight'),
  2. createBaseEach = require('./_createBaseEach');
  3. /**
  4. * The base implementation of `_.forEachRight` without support for iteratee shorthands.
  5. *
  6. * @private
  7. * @param {Array|Object} collection The collection to iterate over.
  8. * @param {Function} iteratee The function invoked per iteration.
  9. * @returns {Array|Object} Returns `collection`.
  10. */
  11. var baseEachRight = createBaseEach(baseForOwnRight, true);
  12. module.exports = baseEachRight;