Re: [whatwg/dom] Consider adding a timeout parameter to the AbortController constructor (Issue #1110)

A timeout of 0 could return an instantly aborted controller, so one could do feature detection:

```js
const a = new AbortController({ timeout: 0 })
const supported = a.signal.aborted 
```

-- 
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/1110#issuecomment-1242347642
You are receiving this because you are subscribed to this thread.

Message ID: <whatwg/dom/issues/1110/1242347642@github.com>

Received on Friday, 9 September 2022 18:50:38 UTC