_baseForRight.js 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;