Permalink
Cannot retrieve contributors at this time
24 lines (23 sloc)
767 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/getImplicitRole.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"] = getImplicitRole; | |
var _ariaQuery = require("aria-query"); | |
var _implicitRoles = _interopRequireDefault(require("./implicitRoles")); | |
/** | |
* Returns an element's implicit role given its attributes and type. | |
* Some elements only have an implicit role when certain props are defined. | |
*/ | |
function getImplicitRole(type, attributes) { | |
var implicitRole; | |
if (_implicitRoles["default"][type]) { | |
implicitRole = _implicitRoles["default"][type](attributes); | |
} | |
if (_ariaQuery.roles.has(implicitRole)) { | |
return implicitRole; | |
} | |
return null; | |
} | |
module.exports = exports.default; |