Files
klz-cables.com/.pnpm-store/v10/files/b8/beb2249b19496a0fc613149b87003d5564a84efe59d9ff2aeb864c1b42ff20ac5278e8ddad725718c6b9f3bd45e84fc23f99dd3fc590163b7ef90e121c5a0a
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

10 lines
220 B
Plaintext

export function getUniqueListBy(arr, key) {
return [
...new Map(arr.map((item)=>[
item[key],
item
])).values()
];
}
//# sourceMappingURL=getUniqueListBy.js.map