Skip to content

Instantly share code, notes, and snippets.

@Fawers
Created April 3, 2016 17:15
Show Gist options
  • Save Fawers/eabf93ab4a02f31c80bacf57ccd3ddbf to your computer and use it in GitHub Desktop.
Save Fawers/eabf93ab4a02f31c80bacf57ccd3ddbf to your computer and use it in GitHub Desktop.
function getCookies() {
var cookies = {};
document.cookie.split(';')
.map(function(item) {return item.split('=');})
.forEach(function(item) {cookies[item[0]] = item[1]});
return cookies;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment