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