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

Ordering of the keys is indeed an important consideration. I'm not going to argue that we *need* to have the object-array approach. I'm only going to say that it's likely what many Node.js developers will likely expect given the pattern established by other APIs... e.g.

```js
const qs = require('querystring');
console.log(qs.stringify({a:[1,2]}));
  // prints: a=1&a=2
```

This is not an uncommon pattern in Node.js and I have absolutely no doubt that we will receive questions and issue reports about it not being supported.

-- 
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-276744367

Received on Wednesday, 1 February 2017 18:48:27 UTC