debian-mirror-gitlab/app/assets/javascripts/lib/utils/cache.js
2017-09-10 17:25:29 +05:30

19 lines
306 B
JavaScript

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;