(value: any)
| 143 | } |
| 144 | |
| 145 | export function isObject(value: any): boolean { |
| 146 | return value !== null && typeof value === "object" && !Array.isArray(value); |
| 147 | } |
| 148 | |
| 149 | export function isUndefined(value: any): boolean { |
| 150 | return value === undefined; |
no outgoing calls
no test coverage detected