Rocky_Mountain_Vending/.pnpm-store/v10/files/1a/4add4ac05ade24b11a37aa5c0fe900bf10ad884ed8cff44d2a9a88d8bb4f69c021d8afa82b0aaa38008795174b8c7546575d164c24d04c3a2c8069a4c5c091
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

28 lines
No EOL
726 B
Text

import { config } from '../config';
let context = null;
export function errorContext(cb) {
if (config.useDeprecatedSynchronousErrorHandling) {
const isRoot = !context;
if (isRoot) {
context = { errorThrown: false, error: null };
}
cb();
if (isRoot) {
const { errorThrown, error } = context;
context = null;
if (errorThrown) {
throw error;
}
}
}
else {
cb();
}
}
export function captureError(err) {
if (config.useDeprecatedSynchronousErrorHandling && context) {
context.errorThrown = true;
context.error = err;
}
}
//# sourceMappingURL=errorContext.js.map