Sha256: c08d672dca4bcb17fe17da9e8e5669bb8d87f6763021e4507192ff064a829d42
Contents?: true
Size: 627 Bytes
Versions: 153
Compression:
Stored size: 627 Bytes
Contents
/** * This method is like `_.tap` except that it returns the result of `interceptor`. * * @static * @memberOf _ * @category Chain * @param {*} value The value to provide to `interceptor`. * @param {Function} interceptor The function to invoke. * @param {*} [thisArg] The `this` binding of `interceptor`. * @returns {*} Returns the result of `interceptor`. * @example * * _(' abc ') * .chain() * .trim() * .thru(function(value) { * return [value]; * }) * .value(); * // => ['abc'] */ function thru(value, interceptor, thisArg) { return interceptor.call(thisArg, value); } module.exports = thru;
Version data entries
153 entries across 80 versions & 8 rubygems