選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

isPresentationRole.js 422 B

123456789101112131415
  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;