(error: Error)
| 424 | let data = '' |
| 425 | let resolved = false |
| 426 | const fail = (error: Error): void => { |
| 427 | clearTimeout(timeout) |
| 428 | if (!resolved) { |
| 429 | resolved = true |
| 430 | reject(error) |
| 431 | } |
| 432 | } |
| 433 | const done = (value: string): void => { |
| 434 | clearTimeout(timeout) |
| 435 | if (!resolved) { |
nothing calls this directly
no outgoing calls
no test coverage detected