Rocky_Mountain_Vending/.pnpm-store/v10/files/bd/f120d15bd3b1eedc0f7c9d4bfc0dc11f85783904c59e9e79b9afd8e96d68b3a97ffa4471b4d5665e115cd54562f2c078fb94178603a2061c24c6b617f957bc
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
219 B
Text

/**
* Checks if a given element has a CSS class.
*
* @param element the element
* @param className the CSS class name
*/
export default function hasClass(element: Element | SVGElement, className: string): boolean;