Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
variable pipe
import { pipe } from "https://deno.land/x/adoublef@v0.0.1/fp/curried/mod.ts";

type

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