Files
portfolio/node_modules/eslint-plugin-jsx-a11y/lib/util/implicitRoles/meter.js
2021-09-20 16:54:47 -04:00

13 lines
243 B
JavaScript

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