Seq_.thru本页总览_.thru(value, interceptor)这个方法类似_.tap, 除了它返回 interceptor 的返回结果。该方法的目的是"传递" 值到一个方法链序列以取代中间结果。添加版本3.0.0参数value (*): 提供给 interceptor 的值。interceptor (Function): 用来调用的函数。返回(*): 返回 interceptor 的返回结果。例子_(' abc ') .chain() .trim() .thru(function(value) { return [value]; }) .value();// => ['abc']