Lodash

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

“Util” Methods

_.flowRight([funcs])

这个方法类似 _.flow,除了它调用函数的顺序是从右往左的。

添加版本

3.0.0

参数

  1. [funcs] (...(Function|Function[])): 要调用的函数。

返回

(Function): 返回新的函数。

例子

function square(n) {
  return n * n;
}
 
var addSquare = _.flowRight([square, _.add]);
addSquare(1, 2);
// => 9

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods