UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

10 lines (9 loc) 174 B
/** Add **`undefined`** to **`U`** * @param U to make nullable * @returns **union** * @example * ```ts * ``` */ export type Nullable<U extends any> = U | undefined