Skip to content

Instantly share code, notes, and snippets.

@codebubb
Created September 2, 2019 12:54
Show Gist options
  • Save codebubb/acd08c4ba78b5026dd9c81bc3746f9cf to your computer and use it in GitHub Desktop.
Save codebubb/acd08c4ba78b5026dd9c81bc3746f9cf to your computer and use it in GitHub Desktop.
Decode URL Search Params (to object)
const searchParams = new URLSearchParams(window.location.search);
const decodedParams = Array
.from(searchParams.keys())
.reduce((acc, key) => ({ ...acc, [key]: searchParams.get(key) }), {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment