- From: Luis Canales <notifications@github.com>
- Date: Sun, 29 May 2016 23:07:44 -0700
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc:
Received on Monday, 30 May 2016 06:08:13 UTC
@annevk, I agree on the part of `searchParams` in Firefox, but this part is wrong: ```js Object.keys(params).forEach((key, value) => { url.searchParams.append(key, value) }) ``` This part will always put the index as a value: `"https://example.org/api?first=0&second=1"` I just wanted to leave a working example since this page is one of the first results thrown by google --- 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/fetch/issues/56#issuecomment-222417943
Received on Monday, 30 May 2016 06:08:13 UTC