Re: [heycam/webidl] Proposal: DOMException.ignoreAborts(promise) (#933)

I personally think it would be most natural as a method of `Promise`. This would have an added benefit of integrating really nicely with the [await.ops proposal](https://github.com/tc39/proposal-await.ops) e.g.:

```js
await Promise.ignoreAbort(somePromise);

// with the proposal
await.ignoreAbort somePromise;
```

And as an added benefit it would be a less-awkward thing to perhaps standardize later in the TC39 than "DOMException" which is really weird legacy name that confers little meaning (especially in this context).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/933#issuecomment-731491736

Received on Saturday, 21 November 2020 02:16:50 UTC