Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Last active February 15, 2018 14:20
Show Gist options
  • Save wholypantalones/d69f61afb9c3c9fcdaa31e61be1ddcea to your computer and use it in GitHub Desktop.
Save wholypantalones/d69f61afb9c3c9fcdaa31e61be1ddcea to your computer and use it in GitHub Desktop.
Convert params to object
var search = window.location.search // ?param1=value1&param2=value2
search?JSON.parse('{"' + search.replace(/\?/g, '').replace(/&/g, '","').replace(/=/g,'":"') + '"}',
function(key, value) { return key===""?value:decodeURIComponent(value) }):{};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment