source: trip-planner-front/node_modules/lodash/_baseForRight.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 477 bytes
Line 
1var 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 */
13var baseForRight = createBaseFor(true);
14
15module.exports = baseForRight;
Note: See TracBrowser for help on using the repository browser.