Skip to content

Instantly share code, notes, and snippets.

@automagisch
Created June 7, 2018 09:22
Show Gist options
  • Save automagisch/681f82eb05adcad92ac00c15cf9a40a6 to your computer and use it in GitHub Desktop.
Save automagisch/681f82eb05adcad92ac00c15cf9a40a6 to your computer and use it in GitHub Desktop.
browser cookie shortcuts
// get a key-value representation of cookies
let cookies = () => {
let _cookies = document.cookie.split("; ");
let ret = {};
_cookies.forEach(cookie => {
let split = cookie.split("=");
ret[split[0]] = split[1];
});
return ret;
}
// delete a cookie by name
let removeCookie = name => document.cookie = `${name}+=; Max-Age=-99999999`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment