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