Urara-Blog/node_modules/.pnpm-store/v3/files/b8/624f36824e95205d095cc14f2a93f278bbd4e5968ff52cced4e7151263188bb6135ba6ffb4fd7b2dfa9f3d6de075726f0d16895ece84c008fdb51408385f9a
2022-08-14 01:14:53 +08:00

14 lines
455 B
Text

var baseForOwn = require('./_baseForOwn'),
createBaseEach = require('./_createBaseEach');
/**
* The base implementation of `_.forEach` 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 baseEach = createBaseEach(baseForOwn);
module.exports = baseEach;