C☭
чтото вроде того
class MyProvider {
constructor() {
this.service = {}
this.init();
}
init() {
// need to call this.service.update()
}
$get(Cache) {
this.service.update = () => {
this.data = Cache.getData();
}
return this.service;
}
}


