Skip to content

Instantly share code, notes, and snippets.

@blowery
Created September 3, 2020 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blowery/3738c245ce2eac6c0fdf4b16a651c620 to your computer and use it in GitHub Desktop.
Save blowery/3738c245ce2eac6c0fdf4b16a651c620 to your computer and use it in GitHub Desktop.
Object.fromEntries(
document.cookie.split(';')
.map(cv=>cv.trim().split('='))
.map(([k,v])=>[k,decodeURIComponent(v)])
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment