Rocky_Mountain_Vending/.pnpm-store/v10/files/aa/38363bba38cb226f69b377f264c457855e9cdb158d3f07316ac92af706ccfb8978c2f0b0c41d8e6a3c86a8ce1d8fba1fc9ef715d8baab63e2c9f23e4bc8109
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

21 lines
512 B
Text

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;
}
export { isDebuggerEnabled };
//# sourceMappingURL=debug.js.map