form.js 233 B

12345678910111213
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports["default"] = getImplicitRoleForForm;
  6. /**
  7. * Returns the implicit role for a form tag.
  8. */
  9. function getImplicitRoleForForm() {
  10. return 'form';
  11. }