Rocky_Mountain_Vending/.pnpm-store/v10/files/45/c59a871d9ea10230d7c5a791adad36e4a81ac63dd4eac3ebaa53e295d9dcae35d50ae8a1071d6d53330066df642e6b8c70d2483a6f34b535638db6bae240a3
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
189 B
Text

/**
* Checks if a given element is an input (input, select, textarea or button).
*
* @param node the element to check
*/
export default function isInput(node: Element | null): boolean;