Skip to content

Instantly share code, notes, and snippets.

@JohnMarkT
Created December 14, 2017 16:10
Show Gist options
  • Save JohnMarkT/eefbe92f8ad73fc29ee08dd959b48201 to your computer and use it in GitHub Desktop.
Save JohnMarkT/eefbe92f8ad73fc29ee08dd959b48201 to your computer and use it in GitHub Desktop.
Simple conversion of cookies to object
const cookies = document.cookie.split(';').reduce((a, c) => {const p = c.split('='); a[p[0]] = p[1]; return a;}, {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment