fix handling of duplicate http headers

This commit is contained in:
ading2210 2024-03-07 15:50:21 -05:00
parent ca137c3cd2
commit 15179fae43
4 changed files with 15 additions and 6 deletions

View file

@ -76,6 +76,8 @@ Most of the standard Fetch API's features are supported, with the exception of:
- Sending credentials/cookies automatically
- Caching
The response may contain multiple HTTP headers with the same name, which the `Headers` object isn't able to properly represent. If this matters to you, use `response.raw_headers`, which is an array of key value pairs, instead of `response.headers`.
Note that there is a hard limit of 50 active TCP connections due to emscripten limitations.
### Creating WebSocket Connections: