Files
klz-cables.com/.pnpm-store/v10/files/eb/4d06e68cdcb7ca27fed5e9b5699ad88f06b803e4f1c5c667af5e5eb23da7086d98d21713b0b3a9894773a449af40baa60aa49500ba7acef878356f3f31a2e4
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

24 lines
603 B
Plaintext

Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
let cachedDebuggerEnabled;
/**
* Was the debugger enabled when this function was first called?
*/
async function isDebuggerEnabled() {
if (cachedDebuggerEnabled === undefined) {
try {
// Node can be built without inspector support
const inspector = await import('node:inspector');
cachedDebuggerEnabled = !!inspector.url();
} catch {
cachedDebuggerEnabled = false;
}
}
return cachedDebuggerEnabled;
}
exports.isDebuggerEnabled = isDebuggerEnabled;
//# sourceMappingURL=debug.js.map