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

13 lines
270 B
Plaintext

export function isImage(mimeType) {
return [
'image/jpeg',
'image/png',
'image/gif',
'image/svg+xml',
'image/webp',
'image/avif',
'image/jxl'
].indexOf(mimeType) > -1;
}
//# sourceMappingURL=isImage.js.map