- From: Jan Potoms <notifications@github.com>
- Date: Wed, 01 Feb 2017 08:54:41 -0800
- To: whatwg/url <url@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 1 February 2017 16:55:29 UTC
I don't think a lot of people know. And I always forget it myself.
I'd say that following use case is not that uncommon though:
```js
const querystring = require('querystring');
querystring.parse('a=1&a=2');
// { a: [ '1', '2' ] }
```
also `set-cookie` headers on requests is a quite common use case.
--
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/url/pull/204#issuecomment-276713150
Received on Wednesday, 1 February 2017 16:55:29 UTC