thingies
thingies copied to clipboard
perf: `LruMap`
Maybe setting the default limit in LruMap to some integer would improve perf, as Infinity is probably stored as f64.
export class LruMap<K, V> extends Map<K, V> {
constructor(public readonly limit: number = Infinity) {