Skip to content

Instantly share code, notes, and snippets.

@rileyjshaw
Last active November 13, 2019 15:07
Show Gist options
  • Save rileyjshaw/32d7455e63c129d6064d406870a427c2 to your computer and use it in GitHub Desktop.
Save rileyjshaw/32d7455e63c129d6064d406870a427c2 to your computer and use it in GitHub Desktop.
A very cheap query params object. Fragile!
let p=location.search?.slice(1).split(/&|=/).reduce((o,k,i,a)=>++i%2?(o[k]=a[i],o):o,{})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment