| 10 | */ |
| 11 | export function createNoRetryEventSource(BaseEventSource: EventSourceCtor): EventSourceCtor { |
| 12 | return class NoRetryEventSource extends BaseEventSource { |
| 13 | constructor(url: string | URL, init?: EventSourceInit) { |
| 14 | super(url, init); |
| 15 | this.addEventListener('error', () => { |
nothing calls this directly
no outgoing calls
no test coverage detected