Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_baseForRight.js 477B

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;