Files
klz-cables.com/.pnpm-store/v10/files/97/23195dfdb796e004f00d2333e043d07f18ac475df13047e347d8081307fe2e787f092c05a782d9308a9b86bca948ca1b08896566a597597cf706ddc2a5e52d
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

11 lines
249 B
Plaintext

export const transformNumbers = ({ baseRow, data, numbers })=>{
data.forEach((val, i)=>{
numbers.push({
...baseRow,
number: val,
order: i + 1
});
});
};
//# sourceMappingURL=numbers.js.map