Sha256: 3525a6fb0dc96ff7d8cac1f15bf86277729fb9b92e44ee5e3651753d58fa3765

Contents?: true

Size: 866 Bytes

Versions: 273

Compression:

Stored size: 866 Bytes

Contents

var baseForOwnRight = require('./_baseForOwnRight'),
    castFunction = require('./_castFunction');

/**
 * This method is like `_.forOwn` except that it iterates over properties of
 * `object` in the opposite order.
 *
 * @static
 * @memberOf _
 * @since 2.0.0
 * @category Object
 * @param {Object} object The object to iterate over.
 * @param {Function} [iteratee=_.identity] The function invoked per iteration.
 * @returns {Object} Returns `object`.
 * @see _.forOwn
 * @example
 *
 * function Foo() {
 *   this.a = 1;
 *   this.b = 2;
 * }
 *
 * Foo.prototype.c = 3;
 *
 * _.forOwnRight(new Foo, function(value, key) {
 *   console.log(key);
 * });
 * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'.
 */
function forOwnRight(object, iteratee) {
  return object && baseForOwnRight(object, castFunction(iteratee));
}

module.exports = forOwnRight;

Version data entries

273 entries across 271 versions & 29 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/lodash/forOwnRight.js
immosquare-cleaner-0.1.59 node_modules/lodash/forOwnRight.js
immosquare-cleaner-0.1.58 node_modules/lodash/forOwnRight.js
immosquare-cleaner-0.1.57 node_modules/lodash/forOwnRight.js
immosquare-cleaner-0.1.56 node_modules/lodash/forOwnRight.js
immosquare-cleaner-0.1.55 node_modules/lodash/forOwnRight.js
immosquare-cleaner-0.1.54 node_modules/lodash/forOwnRight.js
immosquare-cleaner-0.1.53 node_modules/lodash/forOwnRight.js
immosquare-cleaner-0.1.52 node_modules/lodash/forOwnRight.js
trusty-cms-6.3.1 node_modules/lodash/forOwnRight.js
immosquare-cleaner-0.1.51 node_modules/lodash/forOwnRight.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/lodash/forOwnRight.js
clapton-0.0.26 lib/clapton/javascripts/node_modules/lodash/forOwnRight.js
clapton-0.0.25 lib/clapton/javascripts/node_modules/lodash/forOwnRight.js
immosquare-cleaner-0.1.50 node_modules/lodash/forOwnRight.js
clapton-0.0.24 lib/clapton/javascripts/node_modules/lodash/forOwnRight.js
clapton-0.0.23 lib/clapton/javascripts/node_modules/lodash/forOwnRight.js
clapton-0.0.22 lib/clapton/javascripts/node_modules/lodash/forOwnRight.js
clapton-0.0.21 lib/clapton/javascripts/node_modules/lodash/forOwnRight.js
clapton-0.0.20 lib/clapton/javascripts/node_modules/lodash/forOwnRight.js