(value: unknown)
| 10 | } |
| 11 | |
| 12 | function isJsonObject(value: unknown): value is Record<string, unknown> { |
| 13 | return typeof value === "object" && value !== null && !Array.isArray(value); |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * JSON body from POST /fetch when the proxy itself failed (auth, TLS, etc.), |
no outgoing calls
no test coverage detected