Skip to main content
Module

x/fae/pipe.ts>pipe

A functional module for Deno inspired from Ramda.
Latest
function pipe
import { pipe } from "https://deno.land/x/fae@v1.1.1/pipe.ts";

Performs a left-to-right function composition. The first function may have any number of arguments; the remaining must have single argument. Note: The returned function is automatically curried.

Type Parameters

F2 extends FuncArr1<any, any>[]

Parameters

func: Func
...functions: F2