(key: string)
| 29 | private _cache: Map<string, CacheEntry<Value>> = new Map(); |
| 30 | |
| 31 | get(key: string): Eventually<CacheEntry<Value>> { |
| 32 | return this._cache.get(key); |
| 33 | } |
| 34 | |
| 35 | set(key: string, value: CacheEntry<Value>): unknown { |
| 36 | this._cache.set(key, value); |
no outgoing calls
no test coverage detected