aria-allowed-role-matches.js 233 B

123456789101112
  1. import { getExplicitRole } from '../commons/aria';
  2. function ariaAllowedRoleMatches(node) {
  3. return (
  4. getExplicitRole(node, {
  5. dpub: true,
  6. fallback: true
  7. }) !== null
  8. );
  9. }
  10. export default ariaAllowedRoleMatches;