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