Files
klz-cables.com/.pnpm-store/v10/files/f3/74b341949a05777b1f8395a1c53f9c2336736ece78e2d43796d1bbd6bb65165adf7c784e9b8eb564958f7ddff73f6047cc009a204cbf6045f58e456402b19a
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

1 line
687 B
Plaintext

{"version":3,"file":"is-response.js","names":[],"sources":["../../src/utils/is-response.ts"],"sourcesContent":["/**\n * Custom type guard to check if an object is likely a Fetch Response\n */\nexport function isFetchResponse(result: unknown): result is Response {\n\tif (typeof result !== 'object' || !result) return false;\n\n\treturn (\n\t\t'headers' in result &&\n\t\t'ok' in result &&\n\t\t'json' in result &&\n\t\ttypeof result.json === 'function' &&\n\t\t'text' in result &&\n\t\ttypeof result.json === 'function'\n\t);\n}\n"],"mappings":"AAGA,SAAgB,EAAgB,EAAqC,CAGpE,OAFI,OAAO,GAAW,UAAY,CAAC,EAAe,GAGjD,YAAa,GACb,OAAQ,GACR,SAAU,GACV,OAAO,EAAO,MAAS,YACvB,SAAU,GACV,OAAO,EAAO,MAAS"}