(thing: unknown)
| 89 | export const isNull = (thing: unknown): thing is null => thing === null; |
| 90 | |
| 91 | export const isTrue = (thing: unknown): thing is true => thing === true; |
| 92 | |
| 93 | export const isFalse = (thing: unknown): thing is false => thing === false; |
| 94 |
no outgoing calls
no test coverage detected
searching dependent graphs…