(obj: any)
| 431 | * ==========================================================================*/ |
| 432 | |
| 433 | function isFunction(obj: any): obj is Function { |
| 434 | return typeof obj === "function"; |
| 435 | } |
| 436 | |
| 437 | function isObject(obj: any): boolean { |
| 438 | return (obj && typeof obj === "object") || isFunction(obj); |
no outgoing calls
no test coverage detected
searching dependent graphs…