Skip to content

Instantly share code, notes, and snippets.

@pilgreen
Created August 20, 2018 16:41
Show Gist options
  • Save pilgreen/b83c116421d05a27188e47e95a305c01 to your computer and use it in GitHub Desktop.
Save pilgreen/b83c116421d05a27188e47e95a305c01 to your computer and use it in GitHub Desktop.
function getParam(key, q) {
let pair = new RegExp(key + "=([^&#]*)");
let match = q.match(pair);
return match ? match[1] : '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment