about summary refs log tree commit diff
path: root/src/state/models/cache/handle-resolutions.ts
blob: 2e2b69661869501172a9e3a68c237133a1c773d4 (plain) (blame)
1
2
3
4
5
import {LRUMap} from 'lru_map'

export class HandleResolutionsCache {
  cache: LRUMap<string, string> = new LRUMap(500)
}