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

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 ''; }