* Deletes a specific key from cache
(key: string)
| 118 | * Deletes a specific key from cache |
| 119 | */ |
| 120 | delete(key: string): boolean { |
| 121 | return this.cache.delete(key); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Deletes all keys matching a pattern |
no outgoing calls
no test coverage detected