j-gallery
Version:
a picture layout library
13 lines (9 loc) • 302 B
JavaScript
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;