deno.land / x / rambda@v9.1.1 / source / pipeAsync.js
12345678import { reduce } from "./reduce";
export function pipeAsync(...fnList){ return function (startArgument){ return reduce(async (value, fn) => fn(await value), startArgument, fnList) }}
Version Info