Last active
February 2, 2022 23:31
-
-
Save carlosascari/419d548b38b67b2c05929b079e618ccd to your computer and use it in GitHub Desktop.
Converts param/search string in url into object
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
/** | |
* Converts param/search string component from a url into an object | |
* Uses `location.search` as input string | |
*/ | |
Object.assign.apply({}, location.search.substr(1).split('&').map(x => x.split('=').reduce((a, b) => { return { [a]: b } }))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment