Files
klz-cables.com/.pnpm-store/v10/files/99/d3f4adefb8b6ce3a1e1fbdfe010faa248840a5666c1c1e8c9b9ccb892e8e26388bbbba0f9b427ed11621afc05251d8bb0d6205f0d399a9f874cebbece8bc23
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

8 lines
207 B
Plaintext

export default class LRUCache<Value> {
private readonly maxSize;
private cache;
constructor(maxSize: number);
set(key: string, value: Value): void;
get(key: string): Value | undefined;
}