Rocky_Mountain_Vending/.pnpm-store/v10/files/68/35fea10438fa6e959d6eed5501a682c83dd36f204f0bf4eed37a85702e7f2dac1a7e7f353ce628b19237c617ad57cf8b78d6561306758c5412c7c9e2059f82
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

9 lines
236 B
Text

import { isFunction } from "./isFunction";
/**
* Tests to see if the object is "thennable".
* @param value the object to test
*/
export function isPromise(value: any): value is PromiseLike<any> {
return isFunction(value?.then);
}