()
| 931 | } |
| 932 | |
| 933 | const onAbort = () => { |
| 934 | const abortedSignal = list.find(s => s.aborted) |
| 935 | const reason = abortedSignal?.reason ?? new DOMException('Aborted', 'AbortError') |
| 936 | try { |
| 937 | controller.abort(reason) |
| 938 | } catch { |
| 939 | controller.abort() |
| 940 | } |
| 941 | } |
| 942 | |
| 943 | for (const sig of list) { |
| 944 | sig.addEventListener?.('abort', onAbort, { once: true, signal: cleanupSignal }) |
nothing calls this directly
no test coverage detected
searching dependent graphs…