Skip to content

Instantly share code, notes, and snippets.

@kylefdoherty
Created March 8, 2020 06:52
Show Gist options
  • Save kylefdoherty/a614434678eb67fcdc8605982f21690b to your computer and use it in GitHub Desktop.
Save kylefdoherty/a614434678eb67fcdc8605982f21690b to your computer and use it in GitHub Desktop.
var getUrlParams = function() {
let search = location.search
if (!search) return {}
return search.slice(1).split('&').reduce(function (obj, param) {
let pair = param.split('=')
obj[pair[0]] = pair[1]
return obj
},{})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment