Skip to content

Instantly share code, notes, and snippets.

@compulim
Created December 2, 2019 03:12
Show Gist options
  • Save compulim/f2a335af6078e0a001a9555b1058345c to your computer and use it in GitHub Desktop.
Save compulim/f2a335af6078e0a001a9555b1058345c to your computer and use it in GitHub Desktop.
Turns location.search into a JS object
const searchParams = Array.from(new URLSearchParams(location.search).entries()).reduce((result, [key, value]) => ({ ...result, [key]: value }), {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment