(value: any)
| 79 | } |
| 80 | |
| 81 | export function isObject(value: any): value is Object { |
| 82 | return value !== null && typeof value === "object" |
| 83 | } |
| 84 | |
| 85 | export function isPlainObject(value: any) { |
| 86 | if (!isObject(value)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…