Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“Seq” Methods

_.thru(value, interceptor)

这个方法类似_.tap, 除了它返回 interceptor 的返回结果。该方法的目的是"传递" 值到一个方法链序列以取代中间结果。

添加版本

3.0.0

参数

  1. value (*): 提供给 interceptor 的值。
  2. interceptor (Function): 用来调用的函数。

返回

(*): 返回 interceptor 的返回结果。

例子

_('  abc  ')
 .chain()
 .trim()
 .thru(function(value) {
   return [value];
 })
 .value();
// => ['abc']

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods