(value: unknown)
| 19 | } |
| 20 | |
| 21 | function isRecord(value: unknown): value is Record<string, unknown> { |
| 22 | return typeof value === 'object' && value !== null && !Array.isArray(value) |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Coalesce an arbitrary bridge result into the `string` required by the |