time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

_baseForRight.js (477B)


      1 var createBaseFor = require('./_createBaseFor');
      2 
      3 /**
      4  * This function is like `baseFor` except that it iterates over properties
      5  * in the opposite order.
      6  *
      7  * @private
      8  * @param {Object} object The object to iterate over.
      9  * @param {Function} iteratee The function invoked per iteration.
     10  * @param {Function} keysFunc The function to get the keys of `object`.
     11  * @returns {Object} Returns `object`.
     12  */
     13 var baseForRight = createBaseFor(true);
     14 
     15 module.exports = baseForRight;