Rocky_Mountain_Vending/.pnpm-store/v10/files/36/b450910bf252e4e1f8949912216b37b751892a775341807c13ce3332fbb9def3adde9ddb9eff082acf6f1c6d5dfc9e809b7e3ccd27ca6aaa82600fb5c921fd
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

14 lines
No EOL
428 B
Text

import { config } from '../config';
import { timeoutProvider } from '../scheduler/timeoutProvider';
export function reportUnhandledError(err) {
timeoutProvider.setTimeout(function () {
var onUnhandledError = config.onUnhandledError;
if (onUnhandledError) {
onUnhandledError(err);
}
else {
throw err;
}
});
}
//# sourceMappingURL=reportUnhandledError.js.map