Files
klz-cables.com/.pnpm-store/v10/files/2e/f5d1f0d187f09f0fc795c663d760fd88af398c246ca11e09572221066fd516f9efb981909d1aa1d08107b4953db5664b42b1f2fb368e3bbd636cc43b58414b
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

4 lines
124 B
Plaintext

var rUpper = /([A-Z])/g;
export default function hyphenate(string) {
return string.replace(rUpper, '-$1').toLowerCase();
}