(thing: unknown)
| 87 | export const hasWindow = (): boolean => !isUndefined(GLOBAL.window); |
| 88 | |
| 89 | export const isNull = (thing: unknown): thing is null => thing === null; |
| 90 | |
| 91 | export const isTrue = (thing: unknown): thing is true => thing === true; |
| 92 |
no outgoing calls
no test coverage detected
searching dependent graphs…