Files
T

13 lines
279 B
JavaScript
Raw Normal View History

2025-08-20 21:01:11 -04:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = getImplicitRoleForArticle;
/**
* Returns the implicit role for an article tag.
*/
function getImplicitRoleForArticle() {
return 'article';
}
module.exports = exports.default;