Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

15 строки
422 B

  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. var _jsxAstUtils = require('jsx-ast-utils');
  6. var presentationRoles = new Set(['presentation', 'none']);
  7. var isPresentationRole = function isPresentationRole(tagName, attributes) {
  8. return presentationRoles.has((0, _jsxAstUtils.getLiteralPropValue)((0, _jsxAstUtils.getProp)(attributes, 'role')));
  9. };
  10. exports.default = isPresentationRole;