in packages/sdk/src/FlagResolverClient.ts [289:296]
evict() {
const now = Date.now();
for (const [key, { timestamp }] of this.#cache) {
const age = now - timestamp;
if (age < this.#ttl) return;
this.#cache.delete(key);
}
}