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

8 lines
243 B
Plaintext

export function isNumber(value) {
if (value === null || value === undefined || typeof value === 'string' && value.trim() === '') {
return false;
}
return !Number.isNaN(Number(value));
}
//# sourceMappingURL=isNumber.js.map