(maxEntries?: number)
| 18 | private maxEntries: number; |
| 19 | |
| 20 | constructor(maxEntries?: number) { |
| 21 | this.maxEntries = maxEntries || 100; |
| 22 | this.cache = new Map<string, T>(); |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Get the entry for the key and mark it as used recently. |
nothing calls this directly
no outgoing calls
no test coverage detected