A small typed left-to-right function composition helper.
npm install @arylo-scripts/function-flowimport flow from '@arylo-scripts/function-flow'
const result = flow(1, (value) => String(value), (value) => value.length)flow passes the result of each function to the next function from left to
right. TypeScript overloads preserve the value type through supported chains.
npm install
npm run lint
npm run build