Skip to content

Instantly share code, notes, and snippets.

@carlhoerberg
Created September 15, 2015 08:05
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 carlhoerberg/2e480354eb1c6e14aad6 to your computer and use it in GitHub Desktop.
Save carlhoerberg/2e480354eb1c6e14aad6 to your computer and use it in GitHub Desktop.
Cookies as a hash
var cookies = document.cookie.split("; ").reduce(function(o, c) { var s = c.split("="); o[s[0]] = s[1]; return o; }, {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment