UNPKG

@emvu/react-scripts

Version:

Fork of configuration and scripts for Create React App.

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