function CacheStore()

in cache_store.js [5:10]


function CacheStore(store) {
    this.store = store;
    // Only stores sets that have been loaded
    // Contains map of key -> bool, where bool isn't important
    this.cache = Object.create(null);
}