- From: James M Snell <notifications@github.com>
- Date: Wed, 01 Feb 2017 10:47:46 -0800
- To: whatwg/url <url@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 1 February 2017 18:48:27 UTC
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