UNPKG

@jsxtools/eslint-plugin-jsx-a11y

Version:

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

12 lines (9 loc) 298 B
const jsxAstUtils = require('../module/jsx-ast-utils.cjs'); function getImplicitRoleForImg(attributes) { const alt = jsxAstUtils.getProp(attributes, "alt"); if (alt && jsxAstUtils.getLiteralPropValue(alt) === "") { return ""; } return "img"; } module.exports = getImplicitRoleForImg;