/
ai_sampletext
/
DiplomWork
Обзор
Документация
Войти
/
ai_sampletext
/
DiplomWork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/dom-helpers/cjs/isInput.js
16 строк
376 B
boolyshareyo
Initial commit
08 июн 2026, 16:00
08 июн 2026, 16:00
6216a29
Код
Авторство
О чём код?
"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"];