A Map sub-class backed by a persistant store
Stan na
Ten skrypt nie powinien być instalowany bezpośrednio. Jest to biblioteka dla innych skyptów do włączenia dyrektywą meta // @require https://update.greasyfork.org/scripts/31448/206062/data-cachejs.js
For playing with in DevTools.
c = ((key, data) => {
function getter() { console.info('getter(): %o', data); return data }
function setter(value) { console.info('setter(%o)', value); data = value }
return new DataCache({ getter, setter, debug: true })
})('test', { name: 'bob', items: ['foo', 'bar'] })
const cache = new DataCache({
getter: GM_getValue,
setter: GM_setValue,
key: 'repos'
})
cache.set('favourites', [ 'json-schema-faker/json-schema-faker', 'angular/angular', 'jquery/jquery' ])