Your IP : 216.73.216.86


Current Path : /home/emeraadmin/public_html/node_modules/dom-helpers/esm/
Upload File :
Current File : /home/emeraadmin/public_html/node_modules/dom-helpers/esm/isVisible.js

/**
 * Checks if a given element is currently visible.
 * 
 * @param node the element to check
 */
export default function isVisible(node) {
  return node ? !!(node.offsetWidth || node.offsetHeight || node.getClientRects().length) : false;
}