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

Version Path
ilog-0.4.1 node_modules/contents/node_modules/lodash/chain/thru.js
ilog-0.4.1 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/chain/thru.js
ilog-0.4.1 node_modules/babel/node_modules/lodash/chain/thru.js
ilog-0.4.0 node_modules/babel/node_modules/lodash/chain/thru.js
ilog-0.4.0 node_modules/contents/node_modules/lodash/chain/thru.js
ilog-0.4.0 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/chain/thru.js
ilog-0.3.3 node_modules/babel/node_modules/lodash/chain/thru.js
ilog-0.3.3 node_modules/contents/node_modules/lodash/chain/thru.js
ilog-0.3.3 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/chain/thru.js
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/thru.js
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/inquirer/node_modules/lodash/chain/thru.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/thru.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/inquirer/node_modules/lodash/chain/thru.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/thru.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/inquirer/node_modules/lodash/chain/thru.js
xcodebuild-helper-1.2.5 externals/ios-sim-master/node_modules/lodash/chain/thru.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/thru.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/inquirer/node_modules/lodash/chain/thru.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/thru.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/inquirer/node_modules/lodash/chain/thru.js