(obj: any)
| 30 | } |
| 31 | |
| 32 | function isArray(obj: any): boolean { |
| 33 | return obj != null && Array.isArray(obj); |
| 34 | } |
| 35 | |
| 36 | function isObject(obj: any): boolean { |
| 37 | return obj != null && obj instanceof Object && !isArray(obj); |
no outgoing calls
no test coverage detected