(key: string, input: string | object)
| 45 | return this.cache[key]; |
| 46 | } |
| 47 | set(key: string, input: string | object) { |
| 48 | this.cache[key] = input; |
| 49 | return input; |
| 50 | } |
| 51 | remove(key: string) { |
| 52 | delete this.cache[key]; |
| 53 | } |
nothing calls this directly
no outgoing calls
no test coverage detected