mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
22 lines
675 B
JavaScript
22 lines
675 B
JavaScript
"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);
|
|
} |