Skip to main content
Module

x/rambda/files/index.d.ts>partialCurry

Faster and smaller alternative to Ramda
Go to Latest
function partialCurry
import { partialCurry } from "https://deno.land/x/rambda@v9.1.0/files/index.d.ts";

Type Parameters

Input
PartialInput
Output

Parameters

fn: (input: Input) => Output
partialInput: PartialInput

Returns

(input: Pick<Input, Exclude<keyof Input, keyof PartialInput>>) => Output