Sha256: 6962bd437841b3c730c4186743aa6ea10473099e8d4295ab3dd832b94427f78d
Contents?: true
Size: 486 Bytes
Versions: 303
Compression:
Stored size: 486 Bytes
Contents
var baseForRight = require('./_baseForRight'), keys = require('./keys'); /** * The base implementation of `_.forOwnRight` without support for iteratee shorthands. * * @private * @param {Object} object The object to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Object} Returns `object`. */ function baseForOwnRight(object, iteratee) { return object && baseForRight(object, iteratee, keys); } module.exports = baseForOwnRight;
Version data entries
303 entries across 279 versions & 33 rubygems