- From: Meghan Denny <notifications@github.com>
- Date: Thu, 19 Dec 2024 10:28:56 -0800
- To: whatwg/url <url@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 19 December 2024 18:28:59 UTC
my reading is that there's no way to create that using `URLSearchParams.prototype.set` (or a non-existant `.setAll`). eg: ```js let params = new URLSearchParams() params.set("q",[1,2]) params.toString() // "q=1%2C2" params.get("q") // "1,2" ``` -- Reply to this email directly or view it on GitHub: https://github.com/whatwg/url/issues/851#issuecomment-2555511727 You are receiving this because you are subscribed to this thread. Message ID: <whatwg/url/issues/851/2555511727@github.com>
Received on Thursday, 19 December 2024 18:28:59 UTC