Skip to content

Instantly share code, notes, and snippets.

@kirpalmakanga
Created July 9, 2019 16:49
Show Gist options
  • Save kirpalmakanga/16a601dcb0d64794c4e9ae0c8a84eac6 to your computer and use it in GitHub Desktop.
Save kirpalmakanga/16a601dcb0d64794c4e9ae0c8a84eac6 to your computer and use it in GitHub Desktop.
Get URL Params
const getUrlParams = (url) => {
const { searchParams } = new URL(url);
return Object.fromEntries([...searchParams.entries()]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment