summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/lib/utils/cache.js
blob: 3141f1eeafca87028db86f1a7dd61de103fa38c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Cache {
  constructor() {
    this.internalStorage = { };
  }

  get(key) {
    return this.internalStorage[key];
  }

  hasData(key) {
    return Object.prototype.hasOwnProperty.call(this.internalStorage, key);
  }

  remove(key) {
    delete this.internalStorage[key];
  }
}

export default Cache;