- From: Keith Cirkel <notifications@github.com>
- Date: Fri, 09 Sep 2022 11:50:25 -0700
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 9 September 2022 18:50:38 UTC
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