(value: unknown)
| 11 | ) as symbol |
| 12 | |
| 13 | function isObject(value: unknown): value is Record<PropertyKey, any> { |
| 14 | return typeof value === 'object' && value !== null |
| 15 | } |
| 16 | |
| 17 | export function getReactiveStore( |
| 18 | target: unknown |
no outgoing calls
no test coverage detected