Files
cannaiq/frontend/node_modules/es-toolkit/dist/function/flowRight.js
2025-11-28 19:45:44 -07: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;