624f36824e95205d095cc14f2a93f278bbd4e5968ff52cced4e7151263188bb6135ba6ffb4fd7b2dfa9f3d6de075726f0d16895ece84c008fdb51408385f9a 455 B

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