UNPKG

@jsxtools/eslint-plugin-jsx-a11y

Version:

Static AST checker for accessibility rules on JSX elements for flat ESLint Config.

12 lines (9 loc) 294 B
import { getProp, getLiteralPropValue } from '../module/jsx-ast-utils.js'; function getImplicitRoleForImg(attributes) { const alt = getProp(attributes, "alt"); if (alt && getLiteralPropValue(alt) === "") { return ""; } return "img"; } export { getImplicitRoleForImg as default };