Last active
February 21, 2024 13:44
-
-
Save cvan/38fa77f1f28d3eb9d9c461e1d0d0d7d7 to your computer and use it in GitHub Desktop.
get query-string parameters (alternative to `URLSearchParams`)
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
var queryParams = window.location.search.substr(1).split('&').reduce(function (qs, query) { | |
var chunks = query.split('='); | |
var key = chunks[0]; | |
var value = decodeURIComponent(chunks[1] || ''); | |
var valueLower = value.trim().toLowerCase(); | |
if (valueLower === 'true' || value === 'false') { | |
value = Boolean(value); | |
} else if (!isNaN(Number(value))) { | |
value = Number(value); | |
} | |
return (qs[key] = value, qs); | |
}, {}); |
mdtrooper
commented
Feb 26, 2020
@mdtrooper thanks for the suggestions; I updated this gist to coerce numbers as you suggested, in addition to 'true'
/'false'
to booleans
Appreciated 👍
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment