Re: [whatwg/url] Make URLSearchParams' record constructor more flexible (#204)

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