Skip to content

Instantly share code, notes, and snippets.

@aosteraas
Created May 2, 2012 04:04
Show Gist options
  • Save aosteraas/2573525 to your computer and use it in GitHub Desktop.
Save aosteraas/2573525 to your computer and use it in GitHub Desktop.
storage api
function localStorageSupported() {
try {
return "localStorage" in window && window["localStorage"] !== null;
} catch (e) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment