(x: unknown)
| 87 | } |
| 88 | |
| 89 | export function isPlainObject(x: unknown): x is Record<any, any> { |
| 90 | return toString(x) === '[object Object]' |
| 91 | } |
| 92 | |
| 93 | export function isFunction(x: unknown): x is Function { |
| 94 | return typeof x === 'function' |
no test coverage detected
searching dependent graphs…