(text: string)
| 287 | } |
| 288 | |
| 289 | function safeJsonParse(text: string): any { |
| 290 | try { |
| 291 | return JSON.parse(text); |
| 292 | } catch (e) { |
| 293 | return undefined; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | function createResponseHeaders(headers: Response["headers"]): Record<string, string> { |
| 298 | return new Proxy( |
no test coverage detected
searching dependent graphs…