debian-mirror-gitlab/app/assets/javascripts/lib/utils/cache.js
2018-12-13 13:39:08 +05:30

18 lines
297 B
JavaScript

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];
}
}