(value: unknown)
| 2 | import { normalizeSnapshotOutput, type NormalizeSnapshotOutputOptions } from './normalize.ts'; |
| 3 | |
| 4 | function isRecord(value: unknown): value is Record<string, unknown> { |
| 5 | return value !== null && typeof value === 'object'; |
| 6 | } |
| 7 | |
| 8 | const ELEMENT_REF_KEYS = new Set(['elementRef', 'withinElementRef', 'ref']); |
| 9 | const SIM_RUNTIME_ROOT = '<SIM_RUNTIME_ROOT>'; |
no outgoing calls
no test coverage detected