Re: [whatwg/fetch] Proposal: fetch with multiple AbortSignals (#905)

Useful function!
Small improvement, if one of the signals is already aborted, I would prefer to return an (or the) aborted signal instead of undefined.

```
if (signal.aborted) {
  onAbort();
  return signal;
}
```

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

Received on Tuesday, 14 May 2019 08:21:35 UTC