Skip to content

Instantly share code, notes, and snippets.

@lukaszkorecki
Last active August 29, 2015 14:04
Show Gist options
  • Save lukaszkorecki/6abbacdf8e034e1e42dd to your computer and use it in GitHub Desktop.
Save lukaszkorecki/6abbacdf8e034e1e42dd to your computer and use it in GitHub Desktop.
document.cookie.split('; ').
map(function(i) { return i.split('=') } ).
reduce(function(c,i) { c[i[0]] = i[1]; return c }, {} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment