25 lines
933 B
JavaScript
25 lines
933 B
JavaScript
const require_flow = require("./flow.js");
|
|
//#region src/function/flowRight.ts
|
|
/**
|
|
* Creates a new function that executes the given functions in sequence from right to left. The return value of the previous function is passed as an argument to the next function.
|
|
*
|
|
* The `this` context of the returned function is also passed to the functions provided as parameters.
|
|
*
|
|
* This method is like `flow` except that it creates a function that invokes the given functions from right to left.
|
|
*
|
|
* @param {(...args: any[]) => any} funcs The functions to invoke.
|
|
* @returns {(...args: any[]) => any} Returns the new composite function.
|
|
*
|
|
* @example
|
|
* const add = (x: number, y: number) => x + y;
|
|
* const square = (n: number) => n * n;
|
|
*
|
|
* const combined = flowRight(square, add);
|
|
* console.log(combined(1, 2)); // 9
|
|
*/
|
|
function flowRight(...funcs) {
|
|
return require_flow.flow(...funcs.reverse());
|
|
}
|
|
//#endregion
|
|
exports.flowRight = flowRight;
|