gitlab-org--gitlab-foss/app/assets/javascripts/lib/utils/cache.js
2018-10-10 02:30:24 -05:00

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