UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

4 lines (3 loc) 246 B
import { Dictionary, Predicate } from "./main"; export declare function pickBy<A = any>(pred: Predicate<A>, dict: Dictionary<A>): Dictionary<A>; export declare function pickBy<A = any>(pred: Predicate<A>): (dict: Dictionary<A>) => Dictionary<A>;