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>
16 lines
No EOL
376 B
Text
16 lines
No EOL
376 B
Text
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.default = isInput;
|
|
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
|
|
*/
|
|
|
|
function isInput(node) {
|
|
return node ? regExpInputs.test(node.nodeName) : false;
|
|
}
|
|
|
|
module.exports = exports["default"]; |