Files
klz-cables.com/.pnpm-store/v10/files/7f/41ab850305773045ce50859a8d0404de039fe97351599209f0adf4286ce144effe2dbec923211e7208312cbd8c8e046de178e210fe97fba422ad70f69236b8
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
298 B
Plaintext

export const sanitizeSortParams = (sort)=>{
if (typeof sort === 'string') {
return sort.split(',');
}
if (Array.isArray(sort) && sort.every((value)=>typeof value === 'string')) {
return sort;
}
return undefined;
};
//# sourceMappingURL=sanitizeSortParams.js.map