()
| 368 | |
| 369 | let abortHandler; |
| 370 | const cleanup = () => { |
| 371 | signal?.removeEventListener?.("abort", abortHandler); |
| 372 | }; |
| 373 | |
| 374 | if (signal) { |
| 375 | abortHandler = () => originalResponse.abort(); |
nothing calls this directly
no outgoing calls
no test coverage detected