Rocky_Mountain_Vending/.pnpm-store/v10/files/07/c7cf0c9401941e2b623875e661a892687cd09cb1942dfc99a347b2999c13a5db0ff1192f366a255cfa97e1354d5d92a58d42297db921d9f403d5c6a9d4b2a0
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

10 lines
No EOL
284 B
Text

var regExpInputs = /^(?:input|select|textarea|button)$/i;
/**
* Checks if a given element is an input (input, select, textarea or button).
*
* @param node the element to check
*/
export default function isInput(node) {
return node ? regExpInputs.test(node.nodeName) : false;
}