Skip to content

Instantly share code, notes, and snippets.

@cvan
Last active February 21, 2024 13:44
Show Gist options
  • Save cvan/38fa77f1f28d3eb9d9c461e1d0d0d7d7 to your computer and use it in GitHub Desktop.
Save cvan/38fa77f1f28d3eb9d9c461e1d0d0d7d7 to your computer and use it in GitHub Desktop.
get query-string parameters (alternative to `URLSearchParams`)
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);
}, {});
@petrpacas
Copy link

Appreciated 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment