()
| 248 | }; |
| 249 | |
| 250 | function throwAbortError(): never { |
| 251 | throw new DOMException('The operation was aborted.', 'AbortError'); |
| 252 | } |
| 253 | |
| 254 | async function cancelStream(stream: StreamedMessage): Promise<void> { |
| 255 | const cancelable = stream as CancelableStream; |
no outgoing calls
no test coverage detected