Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
variable pipe
import { pipe } from "https://deno.land/x/adoublef@0.0.1/fp/curried/compose.ts";

type

<T extends unknown[], R>(fn1: (...args: T) => R, ...fns: Array<(a: R) => R>) => unknown