summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/lib/utils/cache.js
blob: 596bd1e388acbaf228961f32cfaf596bd662e6a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export default 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];
  }
}