Skip to content

Instantly share code, notes, and snippets.

@wnstn
Last active August 29, 2015 14:16
Show Gist options
  • Save wnstn/c5d9b44567812c7567fd to your computer and use it in GitHub Desktop.
Save wnstn/c5d9b44567812c7567fd to your computer and use it in GitHub Desktop.
LocalStorage Testing
// OLD
function canUseLocalStorage() {
return typeof localStorage === 'object' && localStorage.setItem;
};
// NEW
function canUseLocalStorage() {
var ls = "vox";
try {
localStorage.setItem(ls, ls);
localStorage.removeItem(ls);
return true;
} catch(e) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment