Skip to content

Instantly share code, notes, and snippets.

@ttam
Last active June 21, 2016 02:26
Show Gist options
  • Save ttam/774aa2dcbdb920b0509120c906eb7543 to your computer and use it in GitHub Desktop.
Save ttam/774aa2dcbdb920b0509120c906eb7543 to your computer and use it in GitHub Desktop.
var GET = document.location.search.split('&').reduce(function(obj, piece) {
[, key, value] = piece.match(/([_a-z]+)=(.+)/);
obj[key] = value;
return obj;
}, {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment