forgeplus-react/node_modules/eslint-plugin-jsx-a11y/lib/util/implicitRoles/select.js

12 lines
238 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';
}