initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
24
github/codeql-action-v2/node_modules/eslint-plugin-jsx-a11y/lib/util/getImplicitRole.js
generated
vendored
Normal file
24
github/codeql-action-v2/node_modules/eslint-plugin-jsx-a11y/lib/util/getImplicitRole.js
generated
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
"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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue