Files
lodash/.internal/baseForRight.js
John-David Dalton aa60e55db4 Update module paths.
2017-01-11 10:06:12 -08:00

16 lines
476 B
JavaScript

import createBaseFor from './createBaseFor.js';
/**
* This function is like `baseFor` except that it iterates over properties
* in the opposite order.
*
* @private
* @param {Object} object The object to iterate over.
* @param {Function} iteratee The function invoked per iteration.
* @param {Function} keysFunc The function to get the keys of `object`.
* @returns {Object} Returns `object`.
*/
const baseForRight = createBaseFor(true);
export default baseForRight;