Re: [whatwg/fetch] Use case for Headers getAll (#973)

To be clear, `getAll()` with the semantics I think you are suggesting would be incompatible with what we'd add here, if anything, as HTTP doesn't require preserving the distinction between
```
h.append(name, value)
h.append(name, value2)
```
and
```
h.append(name, `${value}, ${value2}`)
```
for any _name_ other than `Set-Cookie` and this API shouldn't either. See also the discussion in #189.

-- 
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/973#issuecomment-559993307

Received on Saturday, 30 November 2019 16:41:36 UTC