UNPKG

d2-ui

Version:
13 lines (10 loc) 241 B
import getAttribute from '../getAttribute'; /** * Returns the implicit role for an area tag. */ export default function getImplicitRoleForArea(attributes) { if (getAttribute(attributes, 'href')) { return 'link'; } return ''; }