Skip to main content
Module

x/rambda/source/pipeAsync.js

Faster and smaller alternative to Ramda
Latest
File
import { reduce } from "./reduce";
export function pipeAsync(...fnList){ return function (startArgument){ return reduce(async (value, fn) => fn(await value), startArgument, fnList) }}