Rocky_Mountain_Vending/.pnpm-store/v10/files/c3/546991cfdf0c6a3510779e69e30706991c76acb5b6674ef3eced16fd58d5e5f7b9e94a2942f1e2e29b31bcee42cdac541a857ede7a22b7c1007d7e3cdb8e5c
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

7 lines
203 B
Text

/**
* Returns true if the object is a function.
* @param value The value to check
*/
export function isFunction(value: any): value is (...args: any[]) => any {
return typeof value === 'function';
}