GoScrobble/web/node_modules/@material-ui/styles/es/makeStyles/multiKeyStore.js

22 lines
558 B
JavaScript
Raw Permalink Normal View History

2022-04-25 02:47:15 +00:00
// Used https://github.com/thinkloop/multi-key-cache as inspiration
const multiKeyStore = {
set: (cache, key1, key2, value) => {
let subCache = cache.get(key1);
if (!subCache) {
subCache = new Map();
cache.set(key1, subCache);
}
subCache.set(key2, value);
},
get: (cache, key1, key2) => {
const subCache = cache.get(key1);
return subCache ? subCache.get(key2) : undefined;
},
delete: (cache, key1, key2) => {
const subCache = cache.get(key1);
subCache.delete(key2);
}
};
export default multiKeyStore;