no-role-matches.js 101 B

12345
  1. function noRoleMatches(node) {
  2. return !node.getAttribute('role');
  3. }
  4. export default noRoleMatches;