Sha256: 26beba89e1190634bedf9ff4dde1ebb80747bf0b2fe84421b6abe39dbd546fe1
Contents?: true
Size: 517 Bytes
Versions: 26
Compression:
Stored size: 517 Bytes
Contents
'use strict'; var getWindow = require('./getWindow.js'); function isVisible(element) { const window = getWindow.getWindow(element); for(let el = element; el === null || el === void 0 ? void 0 : el.ownerDocument; el = el.parentElement){ const { display, visibility } = window.getComputedStyle(el); if (display === 'none') { return false; } if (visibility === 'hidden') { return false; } } return true; } exports.isVisible = isVisible;
Version data entries
26 entries across 26 versions & 1 rubygems