mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-07 12:18:24 -04:00
13 lines
279 B
JavaScript
13 lines
279 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';
|
|
}
|
|
module.exports = exports.default; |