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>
23 lines
603 B
Text
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
|