(thing: unknown)
| 59 | ): boolean => thing instanceof cls; |
| 60 | |
| 61 | export const isNullish = (thing: unknown): thing is undefined | null => |
| 62 | thing == null; |
| 63 | |
| 64 | export const isUndefined = (thing: unknown): thing is undefined => |
| 65 | thing === undefined; |
no outgoing calls
no test coverage detected
searching dependent graphs…