Skip to main content
Module

x/rambda/index.d.ts>converge

Faster and smaller alternative to Ramda
Go to Latest
function converge
import { converge } from "https://deno.land/x/rambda@v7.0.1/index.d.ts";

Accepts a converging function and a list of branching functions and returns a new function. When invoked, this new function is applied to some arguments, each branching function is applied to those same arguments. The results of each branching function are passed as arguments to the converging function to produce the return value.

Parameters

after: ((...a: any[]) => any)
fns: ((...x: any[]) => any)[]

Returns

(...y: any[]) => any