Skip to content

Instantly share code, notes, and snippets.

View xergioalex's full-sized avatar
🎯
Focusing

Sergio Florez xergioalex

🎯
Focusing
View GitHub Profile
Utils = {
// Detect if support local storage
supports_html5_storage: function () {
try {
localStorage.setItem('testKey', 'test');
localStorage.removeItem('testKey');
return true;
} catch (e) {
return false;
}