1 var baseForRight = require('../internal/baseForRight'),
2 createForIn = require('../internal/createForIn');
5 * This method is like `_.forIn` except that it iterates over properties of
6 * `object` in the opposite order.
11 * @param {Object} object The object to iterate over.
12 * @param {Function} [iteratee=_.identity] The function invoked per iteration.
13 * @param {*} [thisArg] The `this` binding of `iteratee`.
14 * @returns {Object} Returns `object`.
22 * Foo.prototype.c = 3;
24 * _.forInRight(new Foo, function(value, key) {
27 * // => logs 'c', 'b', and 'a' assuming `_.forIn ` logs 'a', 'b', and 'c'
29 var forInRight = createForIn(baseForRight);
31 module.exports = forInRight;