Urara-Blog/node_modules/.pnpm-store/v3/files/86/d5a8e813981063abcebe37b538709784f604dc5b873e789eb309ec629e7da4feb60a8b9403d3e39fdfb3509c70c3e9a396c7b7276a428d67f9a858f15479bd
2022-08-14 01:14:53 +08:00

15 lines
477 B
Text

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