Urara-Blog/node_modules/.pnpm-store/v3/files/8f/66609ec1020ccd018ccec122eb3a65ff067deb228a7189a518934b54d2cd85c393c1407288ac5a6d2b122f4ef01d94fc626a1db168c7f14a809db189311e67
2022-08-14 01:14:53 +08:00

14 lines
491 B
Text

var baseForOwnRight = require('./_baseForOwnRight'),
createBaseEach = require('./_createBaseEach');
/**
* The base implementation of `_.forEachRight` without support for iteratee shorthands.
*
* @private
* @param {Array|Object} collection The collection to iterate over.
* @param {Function} iteratee The function invoked per iteration.
* @returns {Array|Object} Returns `collection`.
*/
var baseEachRight = createBaseEach(baseForOwnRight, true);
module.exports = baseEachRight;