* Stores a value in the cache. * * @param key - The cache key * @param value - The value to cache
(key: string, value: T)
| 45 | * @param value - The value to cache |
| 46 | */ |
| 47 | set(key: string, value: T): void { |
| 48 | this.cache.set(key, value) |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Checks if a key exists in the cache. |
no outgoing calls
no test coverage detected