- From: Anne van Kesteren <notifications@github.com>
- Date: Thu, 11 Jun 2015 02:31:52 -0700
- To: whatwg/fetch <fetch@noreply.github.com>
Received on Thursday, 11 June 2015 09:32:20 UTC
Example could be something like: ```js var url = new URL("http://example.org/api"), params = { first: "x", second: "y" } Object.keys(params).forEach((key, value) => { url.searchParams.append(key, value) }) fetch(url).then(/* ... */) ``` --- Reply to this email directly or view it on GitHub: https://github.com/whatwg/fetch/issues/56#issuecomment-111063157
Received on Thursday, 11 June 2015 09:32:20 UTC