Skip to content

Instantly share code, notes, and snippets.

@bloodyowl
Last active December 15, 2015 15:29
Show Gist options
  • Save bloodyowl/5282197 to your computer and use it in GitHub Desktop.
Save bloodyowl/5282197 to your computer and use it in GitHub Desktop.
139 bytes Cookie getter
/*
Returns document.cookie as an object
*/
function getCookie(o,a,l,s){o={},a=document.cookie.split(/\s*;\s*/),l=a.length;for(;l--;)s=a[l].split(/\s*=\s*/),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