Permalink
Cannot retrieve contributors at this time
21 lines (19 sloc)
782 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/eslint-plugin-jsx-a11y/lib/util/isDOMElement.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports["default"] = void 0; | |
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray")); | |
var _ariaQuery = require("aria-query"); | |
var _arrayIncludes = _interopRequireDefault(require("array-includes")); | |
var domElements = (0, _toConsumableArray2["default"])(_ariaQuery.dom.keys()); | |
/** | |
* Returns boolean indicating whether the given element is a DOM element. | |
*/ | |
var isDOMElement = function isDOMElement(tagName) { | |
return (0, _arrayIncludes["default"])(domElements, tagName); | |
}; | |
var _default = isDOMElement; | |
exports["default"] = _default; | |
module.exports = exports.default; |