Last active
October 5, 2021 14:32
-
-
Save kekscom/893d02c37a40aecbb135 to your computer and use it in GitHub Desktop.
parse query string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const q = location.search.replace('?', ''); | |
const params = {}; | |
q.replace(/([^&=]+)=([^&]*)/g, ($0, $1, $2) => { | |
params[$1] = $2; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment