13 lines
246 B
JavaScript
13 lines
246 B
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports["default"] = getImplicitRoleForArticle;
|
||
|
|
||
|
/**
|
||
|
* Returns the implicit role for an article tag.
|
||
|
*/
|
||
|
function getImplicitRoleForArticle() {
|
||
|
return 'article';
|
||
|
}
|