Check if browser has webstorage enabled
// check if browser has webstorage enabled | |
function hasStorage () { | |
try { | |
localStorage.setItem('has', 'has') | |
localStorage.removeItem('has') | |
return true | |
} catch (exception) { | |
return false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment