(obj: unknown)
| 36 | } |
| 37 | |
| 38 | export function isObject(obj: unknown): obj is object { |
| 39 | return typeof obj === 'object' && obj !== null; |
| 40 | } |
| 41 | |
| 42 | export function isFunction(value: unknown): value is Function { |
| 43 | return typeof value === 'function'; |
no outgoing calls
no test coverage detected