Rocky_Mountain_Vending/.pnpm-store/v10/files/eb/4d06e68cdcb7ca27fed5e9b5699ad88f06b803e4f1c5c667af5e5eb23da7086d98d21713b0b3a9894773a449af40baa60aa49500ba7acef878356f3f31a2e4
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

23 lines
603 B
Text

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