()
| 10 | private static instance: InMemoryCache; |
| 11 | |
| 12 | private constructor() { |
| 13 | this.inMemoryDb = new Map<string, ICacheEntry>(); |
| 14 | } |
| 15 | |
| 16 | static getInstance() { |
| 17 | if (!this.instance) { |
nothing calls this directly
no outgoing calls
no test coverage detected