Rocky_Mountain_Vending/.pnpm-store/v10/files/55/f8722972fb5acf2ed9cd47d4b809962b0e9abcd636e4eb45f7303c9ac2d3c3316a2c0a41f26afa87703c7595361cb6fea8032c39c2e3c67fffd08eb8b04698
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

6 lines
No EOL
234 B
Text

const REACT_POSTPONE_TYPE = Symbol.for('react.postpone');
export function isPostpone(error) {
return typeof error === 'object' && error !== null && error.$$typeof === REACT_POSTPONE_TYPE;
}
//# sourceMappingURL=is-postpone.js.map