d5a8e813981063abcebe37b538709784f604dc5b873e789eb309ec629e7da4feb60a8b9403d3e39fdfb3509c70c3e9a396c7b7276a428d67f9a858f15479bd 477 B

123456789101112131415
  1. var createBaseFor = require('./_createBaseFor');
  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. module.exports = baseForRight;