(err: unknown)
| 157 | type PerfSample = Readonly<{ phase: string; durationMs: number }>; |
| 158 | |
| 159 | function safeDetail(err: unknown): string { |
| 160 | if (err instanceof Error) return `${err.name}: ${err.message}`; |
| 161 | return String(err); |
| 162 | } |
| 163 | |
| 164 | // Little-endian u32 magic for bytes "ZREV". |
| 165 | const ZREV_MAGIC = 0x5645525a; |
no outgoing calls
no test coverage detected