You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
710 B
24 lines
710 B
"use strict"; |
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); |
|
|
|
Object.defineProperty(exports, "__esModule", { |
|
value: true |
|
}); |
|
exports["default"] = getComputedRole; |
|
|
|
var _getExplicitRole = _interopRequireDefault(require("./getExplicitRole")); |
|
|
|
var _getImplicitRole = _interopRequireDefault(require("./getImplicitRole")); |
|
|
|
/** |
|
* Returns an element's computed role, which is |
|
* |
|
* 1. The valid value of its explicit role attribute; or |
|
* 2. The implicit value of its tag. |
|
*/ |
|
function getComputedRole(tag, attributes) { |
|
return (0, _getExplicitRole["default"])(tag, attributes) || (0, _getImplicitRole["default"])(tag, attributes); |
|
} |
|
|
|
module.exports = exports.default; |