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

12 lines
232 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const flow = require('./flow.js');
function flowRight(...funcs) {
return flow.flow(...funcs.reverse());
}
exports.flowRight = flowRight;