(obj: any)
| 1 | /** @returns Whether the provided parameter is undefined. */ |
| 2 | export const isUndefined = (obj: any): obj is undefined => obj === undefined; |
| 3 | |
| 4 | export const isNull = (obj: any): obj is null => obj === null; |
| 5 |
no outgoing calls
no test coverage detected
searching dependent graphs…