Sha256: 7a84dd073456a6b985225d196c9f29459f393d4f2bab3c7397b1fcf2323b74a0
Contents?: true
Size: 525 Bytes
Versions: 153
Compression:
Stored size: 525 Bytes
Contents
var baseForOwnRight = require('./baseForOwnRight'), createBaseEach = require('./createBaseEach'); /** * The base implementation of `_.forEachRight` without support for callback * shorthands and `this` binding. * * @private * @param {Array|Object|string} collection The collection to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array|Object|string} Returns `collection`. */ var baseEachRight = createBaseEach(baseForOwnRight, true); module.exports = baseEachRight;
Version data entries
153 entries across 80 versions & 8 rubygems