Skip to content

Instantly share code, notes, and snippets.

@almond-bongbong
Created October 30, 2019 14:27
Show Gist options
  • Save almond-bongbong/54677352a8bdb66b558e2d8474bc56cc to your computer and use it in GitHub Desktop.
Save almond-bongbong/54677352a8bdb66b558e2d8474bc56cc to your computer and use it in GitHub Desktop.
const searchParams = location.search
.replace('?', '')
.split('&')
.map(pair => pair.split('='))
.reduce((acc, [k, v]) => {
acc[k] = decodeURIComponent(v);
return acc;
}, {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment