Sha256: 262ecd2c22617734819690c8faa0b7c791d5ba8a453a20888295ab0d057a420e
Contents?: true
Size: 489 Bytes
Versions: 153
Compression:
Stored size: 489 Bytes
Contents
var baseForOwn = require('./baseForOwn'), createBaseEach = require('./createBaseEach'); /** * The base implementation of `_.forEach` 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 baseEach = createBaseEach(baseForOwn); module.exports = baseEach;
Version data entries
153 entries across 80 versions & 8 rubygems