Lodash _.flow() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.flow()方法用于生成一个新的复合函数,该函数返回使用生成的函数的this绑定调用提供的函数的结果。为每个连续调用提供前一个的返回值。
句法:
_.flow( funcs )
参数:此方法接受如上所述和如下所述的单个参数:
- funcs:此参数保存要调用的函数。它是一个可选参数。
返回值:此方法返回新的复合函数。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Function to calculate the
// Cube of a number
function cube(number) {
return number * number * number;
}
// Using the _.flow() method
var multiplycube = _.flow([_.multiply, cube]);
// Return the output
console.log(multiplycube(2, 3));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Function to calculate the
// double value of a number
function doubled(number) {
return number * 2;
}
// Using the _.flow() method
var adddoubled = _.flow([_.add, doubled]);
// Return the output
console.log(adddoubled(6, 8));
输出:
216
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Function to calculate the
// double value of a number
function doubled(number) {
return number * 2;
}
// Using the _.flow() method
var adddoubled = _.flow([_.add, doubled]);
// Return the output
console.log(adddoubled(6, 8));
输出:
28