UNPKG

gerald-react-scripts-fork

Version:

Gerald's fork of the configuration and scripts for Create React App.

13 lines (10 loc) 233 B
import { getProp } from 'jsx-ast-utils'; /** * Returns the implicit role for an area tag. */ export default function getImplicitRoleForArea(attributes) { if (getProp(attributes, 'href')) { return 'link'; } return ''; }