Sha256: 7fd2bafe5ff08fc5f016c73434301cd44d98d6d506d80230c12d47b4acd33903
Contents?: true
Size: 361 Bytes
Versions: 375
Compression:
Stored size: 361 Bytes
Contents
/* global aria */ /** * Check if a given role is unsupported * @method isUnsupportedRole * @memberof axe.commons.aria * @instance * @param {String} role The role to check * @return {Boolean} */ aria.isUnsupportedRole = function(role) { const roleDefinition = aria.lookupTable.role[role]; return roleDefinition ? roleDefinition.unsupported : false; };
Version data entries
375 entries across 375 versions & 1 rubygems