Skip to content

Instantly share code, notes, and snippets.

@ravid7000
Created February 24, 2021 07:05
Show Gist options
  • Save ravid7000/5f5a23ff9634c3469da769ec16495687 to your computer and use it in GitHub Desktop.
Save ravid7000/5f5a23ff9634c3469da769ec16495687 to your computer and use it in GitHub Desktop.
function hasLocalStorageSupport() {
try {
if (typeof window === 'undefined') {
return false;
}
if (typeof localStorage === 'undefined' || typeof sessionStorage === 'undefined') {
return false;
}
} catch(e) {
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment