Files
klz-cables.com/.pnpm-store/v10/files/59/0b4499c12ce69c2ce2ec8c9f5994d324f21f4b3ed05a44e78a2b524ffc52aedc8e97754301ed7dddc8ccc6252b3e07a69c1a105aa5afa0c9360d40cccb4d88
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

6 lines
221 B
Plaintext

export const appendPrefixToObjectKeys = (obj, prefix)=>Object.entries(obj).reduce((res, [key, val])=>{
res[`${prefix}_${key}`] = val;
return res;
}, {});
//# sourceMappingURL=appendPrefixToKeys.js.map