LendAndRegret/node_modules/es-toolkit/dist/function/flowRight.mjs
2026-05-02 17:27:43 +08:00

8 lines
129 B
JavaScript

import { flow } from './flow.mjs';
function flowRight(...funcs) {
return flow(...funcs.reverse());
}
export { flowRight };