5f9815e05e3dfd18787ecbade37786b41c1b55c8e02c0661b929d24120ccf6b11c057a25f635e58d5343a23f0f10a501db45e091ddc14e5088b9da14fb4336 475 B

123456789101112131415
  1. import createBaseFor from './_createBaseFor.js';
  2. /**
  3. * This function is like `baseFor` except that it iterates over properties
  4. * in the opposite order.
  5. *
  6. * @private
  7. * @param {Object} object The object to iterate over.
  8. * @param {Function} iteratee The function invoked per iteration.
  9. * @param {Function} keysFunc The function to get the keys of `object`.
  10. * @returns {Object} Returns `object`.
  11. */
  12. var baseForRight = createBaseFor(true);
  13. export default baseForRight;