Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 361 Bytes

paratype.predicate.md

File metadata and controls

13 lines (8 loc) · 361 Bytes

Home > paratype > Predicate

Predicate type

Returns true if the specified value matches a predicate

Signature:

export declare type Predicate<T> = (value: T) => boolean;