(value: unknown)
| 17 | * Checks if a value is an object. |
| 18 | */ |
| 19 | export function isObject(value: unknown): value is Record<PropertyKey, unknown> { |
| 20 | return (typeof value === 'object' || typeof value === 'function') && value != null; |
| 21 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…