Sha256: 39e0842e9dfb572b59b8237a5edafece23ca372cc20e768ce8e5e27fc9b52996
Contents?: true
Size: 648 Bytes
Versions: 303
Compression:
Stored size: 648 Bytes
Contents
/** * Creates a base function for methods like `_.forIn` and `_.forOwn`. * * @private * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {Function} Returns the new base function. */ function createBaseFor(fromRight) { return function(object, iteratee, keysFunc) { var index = -1, iterable = Object(object), props = keysFunc(object), length = props.length; while (length--) { var key = props[fromRight ? length : ++index]; if (iteratee(iterable[key], key, iterable) === false) { break; } } return object; }; } module.exports = createBaseFor;
Version data entries
303 entries across 279 versions & 33 rubygems