Files
klz-cables.com/.pnpm-store/v10/files/bf/83a75beb1a73fd36d7e16fb47f251cc5898b6f49796ece700bac97029238f33437cd5f9914bffc675f918be11bbbddde8cc1c81164c93240a86cefec56505c
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
283 B
Plaintext

export function groupItemIDsByRelation(items) {
return items.reduce((acc, item) => {
if (!acc[item.relationTo]) {
acc[item.relationTo] = [];
}
acc[item.relationTo].push(item.value.id);
return acc;
}, {});
}
//# sourceMappingURL=groupItemIDsByRelation.js.map