data-cache.js

A Map sub-class backed by a persistant store

لا ينبغي أن لا يتم تثبيت هذا السكريت مباشرة. هو مكتبة لسكبتات لتشمل مع التوجيه الفوقية // @require https://update.greatest.deepsurf.us/scripts/31448/206062/data-cachejs.js

المؤلف
spiralx
الإصدار
1.0.0
تم إنشاؤه
14-07-2017
تم تحديثه
14-07-2017
Size
4.88 KB
الترخيص
لا يوجد

data-cache.js

Example: Quick tester cache

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'] })
Example: User Script
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' ])