(input: A)
| 667 | * @see isNotNullable |
| 668 | */ |
| 669 | export const isNullable = <A>(input: A): input is Extract<A, null | undefined> => input === null || input === undefined |
| 670 | |
| 671 | /** |
| 672 | * A refinement that checks if a value is neither `null` nor `undefined`. |