Rocky_Mountain_Vending/.pnpm-store/v10/files/d9/0de1cdd73612ee78f966048d31aae883943fa246f3ff635f36d7bd1257022704fd502214a0781ecc14de1a1caa6b40adfab9278e89806bab1d7f57a44c8697
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

5 lines
155 B
Text

export function isPromise(maybePromise) {
return (!!maybePromise &&
!!maybePromise.then &&
typeof maybePromise.then === 'function');
}