Skip to content

Instantly share code, notes, and snippets.

@iolo
Created May 21, 2015 02:23
Show Gist options
  • Save iolo/a47c57e55abbac3ebd81 to your computer and use it in GitHub Desktop.
Save iolo/a47c57e55abbac3ebd81 to your computer and use it in GitHub Desktop.
parse cookies on browser
function parseCookies() {
return document.cookie.split(';')
.map(function(s){
return s.split('=');
})
.reduce(function (r,x) {
r[x[0]] = x[1];
return r;
}, {});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment