Files
klz-cables.com/.pnpm-store/v10/files/19/5483732e3c0b071d0c0af45b84f0ee1ea5ab4b8d626d0b1407bfd25074d5e63809ea930885f2af6e7a0ca384cd8bac63b2e24acc4d5561800a3285042cc74b
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

12 lines
327 B
Plaintext

/**
* Formats an array of options for use in a select input.
*/export const formatOptions = options => options.map(option => {
if (typeof option === 'object' && (option.value || option.value === '')) {
return option;
}
return {
label: option,
value: option
};
});
//# sourceMappingURL=formatOptions.js.map