Skip to main content
Module

x/rambda/immutable.d.ts>pickAll

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

Same as R.pick but it won't skip the missing props, i.e. it will assign them to undefined.

Parameters

propsToPick: readonly string[]
input: T

Parameters

propsToPick: readonly string[]

Returns

(input: T) => U

Parameters

propsToPick: string
input: T

Parameters

propsToPick: string

Returns

(input: T) => U