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