UNPKG

eslint-plugin-lit-a11y

Version:
24 lines (20 loc) 576 B
/** * Is the element hidden from the screen-reader? * @param {import("parse5-htmlparser2-tree-adapter").Element} element * @return {boolean} */ function isHiddenFromScreenReader(element) { const type = element.name; const attributes = element.attribs; if (type.toUpperCase() === 'INPUT') { const hidden = attributes.type; if (hidden && hidden.toUpperCase() === 'HIDDEN') { return true; } } const ariaHidden = attributes['aria-hidden']; return ariaHidden === 'true' || ariaHidden === ''; } module.exports = { isHiddenFromScreenReader, };