UNPKG

yhtml5-test

Version:

A test framework for front-end projects

13 lines (9 loc) 302 B
import { getProp, getLiteralPropValue } from 'jsx-ast-utils'; const presentationRoles = new Set([ 'presentation', 'none', ]); const isPresentationRole = (tagName, attributes) => presentationRoles.has( getLiteralPropValue(getProp(attributes, 'role')), ); export default isPresentationRole;