12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
Object.defineProperty(exports, "__esModule", {
|
||
|
|
value: true
|
||
|
|
});
|
||
|
|
exports.default = getImplicitRoleForAside;
|
||
|
|
/**
|
||
|
|
* Returns the implicit role for an aside tag.
|
||
|
|
*/
|
||
|
|
function getImplicitRoleForAside() {
|
||
|
|
return 'complementary';
|
||
|
|
}
|