Appearance
类似 flow,但是函数调用顺序是从右往左(Compose)。
flow
import { flowRight } from '@base-web-kits/base-tools-ts'; function add(x) { return x + 1; } function square(x) { return x * x; } const addSquare = flowRight([square, add]); addSquare(2); // 结果: 9
funcs (Array)
(Function)