Lodash _.flowRight
_.flowRight([funcs])
这个方法类似_.flow,除了它调用函数的顺序是从右往左的。
添加版本
3.0.0
参数
- [funcs] (...(Function|Function[])): 要调用的函数。
返回
(Function): 返回新的函数。
例子
function square(n) { return n * n;}
var addSquare = _.flowRight([square, _.add]);
addSquare(1, 2);
// => 9