UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

7 lines (5 loc) 178 B
import { reduce } from './reduce.js'; export function pipeAsync(...fnList) { return (startArgument) => reduce(async (value, fn) => fn(await value), startArgument, fnList); }