e14c0284840ff0efd2021d6cf4662dc0aed2433c0fcbd91bf460da0546612a43ea4081187b2bf4045d749452ce91582e91f94bc8f515b0fe67c10e69c6aef8 454 B

12345678910111213141516
  1. import baseFor from './_baseFor.js';
  2. import keys from './keys.js';
  3. /**
  4. * The base implementation of `_.forOwn` without support for iteratee shorthands.
  5. *
  6. * @private
  7. * @param {Object} object The object to iterate over.
  8. * @param {Function} iteratee The function invoked per iteration.
  9. * @returns {Object} Returns `object`.
  10. */
  11. function baseForOwn(object, iteratee) {
  12. return object && baseFor(object, iteratee, keys);
  13. }
  14. export default baseForOwn;