(x: unknown)
| 91 | } |
| 92 | |
| 93 | export function isFunction(x: unknown): x is Function { |
| 94 | return typeof x === 'function' |
| 95 | } |
| 96 | |
| 97 | export function isUndef(v: any): boolean { |
| 98 | return v === undefined || v === null |
no outgoing calls
no test coverage detected
searching dependent graphs…