Files
cannaiq/frontend/node_modules/es-toolkit/dist/function/flowRight.mjs
2025-11-28 19:45:44 -07:00

8 lines
129 B
JavaScript

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