UNPKG

orionsoft-react-scripts

Version:

Orionsoft Configuration and scripts for Create React App.

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