( value: T | null | undefined )
| 1 | export default function isNonNullable<T>( |
| 2 | value: T | null | undefined |
| 3 | ): value is NonNullable<T> { |
| 4 | return value !== null && value !== undefined |
| 5 | } |
nothing calls this directly
no outgoing calls
no test coverage detected