mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 01:08:26 +00:00
6 lines
168 B
TypeScript
6 lines
168 B
TypeScript
const isElementInvisible = (elem: HTMLElement) => {
|
|
return !!(elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length)
|
|
}
|
|
|
|
export { isElementInvisible }
|