Rocky_Mountain_Vending/.pnpm-store/v10/files/d7/7109d58eb0f4d5eed3c4d3839c1804796afd1c6a14dedea4fa9b5dbb28a6a1c46dd24bf2e3c7bbd889ce8c22a01432e93e4e627abf7d5d91d4d8faae6d7ecd
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

12 lines
306 B
Text

// @flow
// This file is not actually executed
// It is just used by flow for typing
const prefix: string = 'Invariant failed';
export default function invariant(condition: mixed, message?: string | (() => string)) {
if (condition) {
return;
}
throw new Error(`${prefix}: ${message || ''}`);
}