(key: string)
| 8 | } |
| 9 | |
| 10 | public get(key: string): DatedFileCacheItem | undefined { |
| 11 | return this.map.get(key); |
| 12 | } |
| 13 | |
| 14 | public set(key: string, content: string): boolean { |
| 15 | if (this.map.has(key) && this.map.get(key).content === content) |
no outgoing calls