Skip to content

Instantly share code, notes, and snippets.

@sakshstore
Created September 2, 2022 09:28
Show Gist options
  • Save sakshstore/53157a7176680749f5daacd117da5a2b to your computer and use it in GitHub Desktop.
Save sakshstore/53157a7176680749f5daacd117da5a2b to your computer and use it in GitHub Desktop.
const getQueryParams = (url) => new URLSearchParams(url.split("?")[1]);
// Usage
getQueryParams("https://example.com?a=1&b=2"); // { a: "1", b: "2" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment