Skip to content

Instantly share code, notes, and snippets.

@kevbradwick
Last active February 4, 2016 13:22
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 kevbradwick/fc820c6aa8813636c74c to your computer and use it in GitHub Desktop.
Save kevbradwick/fc820c6aa8813636c74c to your computer and use it in GitHub Desktop.
cookie split to object
var cookies = {};
document.cookie.split('; ').forEach(function(pair) {
var parts = pair.split('=');
cookies[parts[0]] = parts.splice(1).join('=');
});
console.log(cookies);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment