Skip to content

Instantly share code, notes, and snippets.

@ferdiemmen
Created January 22, 2018 10:04
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 ferdiemmen/fe8ca10edcc73cd493bef5f558a9cfdf to your computer and use it in GitHub Desktop.
Save ferdiemmen/fe8ca10edcc73cd493bef5f558a9cfdf to your computer and use it in GitHub Desktop.
Cookies to object
let cookies = {};
document.cookie.split(' ').map(x => x.replace(/;$/g, '').split('=')).map(x => { cookies[x[0]] = x[1]; return x; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment