UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

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;