vl

Results 4 comments of vl

Code from @Cached decorator: How it's currently implemented: ... ``` const value = method.apply(this, args); if (isObservable(value)) { return value.pipe( map((res: any) => { cache.set(cacheKey, res, ReturnType.Observable); return res; })...

Voting up for class level decorators. Would be a useful feature.

I faced the same problem with node 18.12.1 and npm 8.19.2 Had to do actions proposed by vmasek to resolve the problem.