debian-mirror-gitlab/app/assets/javascripts/lib/utils/cache.js
2018-03-17 18:26:18 +05:30

17 lines
298 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];
}
}