Skip to content

Instantly share code, notes, and snippets.

@mradambeck
Last active November 13, 2018 23:36
Show Gist options
  • Save mradambeck/3c8b5a77e15b7bba879ee63966ff3aec to your computer and use it in GitHub Desktop.
Save mradambeck/3c8b5a77e15b7bba879ee63966ff3aec to your computer and use it in GitHub Desktop.
Check for cookies in JS
export const areCookiesEnabled = () => {
let cookieEnabled = !!navigator.cookieEnabled;
if (typeof navigator.cookieEnabled === 'undefined' && !cookieEnabled) {
document.cookie = 'testcookie';
cookieEnabled = document.cookie.indexOf('testcookie') !== -1;
}
return cookieEnabled;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment