e-lado
Version:
[](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [](https://gemnasium.com/sharetribe/shar
17 lines (12 loc) • 376 B
JavaScript
import { getProp, getLiteralPropValue } from 'jsx-ast-utils';
/**
* Returns the implicit role for a menu tag.
*/
export default function getImplicitRoleForMenu(attributes) {
const type = getProp(attributes, 'type');
if (type) {
const value = getLiteralPropValue(type);
return (value && value.toUpperCase() === 'TOOLBAR') ? 'toolbar' : '';
}
return '';
}