7ba9a933445183b12f8c7f9f989556edcaeb2cf06a12760efbff1b6e74f45682bc66e16313d231027f1e7fdf327e9754b733fa6b63d258023224b450c49803 453 B

1234567891011121314
  1. import baseForOwn from './_baseForOwn.js';
  2. import createBaseEach from './_createBaseEach.js';
  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. export default baseEach;