UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

15 lines (11 loc) 317 B
import { getProp, getLiteralPropValue } from 'jsx-ast-utils'; /** * Returns the implicit role for an img tag. */ export default function getImplicitRoleForImg(attributes) { const alt = getProp(attributes, 'alt'); if (alt && getLiteralPropValue(alt) === '') { return 'presentation'; } return 'img'; }