Files
FloatApi/node_modules/eslint-plugin-jsx-a11y/lib/util/implicitRoles/select.js
T
2022-03-07 22:07:57 +07:00

13 lines
242 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = getImplicitRoleForSelect;
/**
* Returns the implicit role for a select tag.
*/
function getImplicitRoleForSelect() {
return 'listbox';
}