(val: unknown)
| 83 | } |
| 84 | |
| 85 | export function isObject(val: unknown): val is Record<any, any> { |
| 86 | return val !== null && typeof val === 'object' |
| 87 | } |
| 88 | |
| 89 | export function isPlainObject(x: unknown): x is Record<any, any> { |
| 90 | return toString(x) === '[object Object]' |
no outgoing calls
no test coverage detected
searching dependent graphs…