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

14 lines
366 B
Plaintext

export const getSelectMode = (select)=>{
for(const key in select){
const selectValue = select[key];
if (selectValue === false) {
return 'exclude';
}
if (typeof selectValue === 'object') {
return getSelectMode(selectValue);
}
}
return 'include';
};
//# sourceMappingURL=getSelectMode.js.map