Skip to content

Instantly share code, notes, and snippets.

View menemy's full-sized avatar

Maksim Nagaev menemy

  • Denti.AI
  • Toronto, Canada
View GitHub Profile
@valerykalashnikov
valerykalashnikov / LocalStorageCache.js
Last active August 29, 2015 13:57
LocalStorageCache
var cache = (function() {
'use strict';
var TTL_POSTFIX = 'time2live';
var TTE_POSTFIX = 'time2expire';
function _hasLocalStorage() {
if (!window.localStorage) {
throw new Error('you have no localStorage');
}
}
function _removeCachedKey(key) {