mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-09 09:09:49 -04:00
13 lines
263 B
JavaScript
13 lines
263 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = getImplicitRoleForH6;
|
|
/**
|
|
* Returns the implicit role for an h6tag.
|
|
*/
|
|
function getImplicitRoleForH6() {
|
|
return 'heading';
|
|
}
|
|
module.exports = exports.default; |