UNPKG

vanillajs-browser-helpers

Version:

Collection of convenience code snippets (helpers) that aims to make it a little easier to work with vanilla JS in the browser

8 lines (7 loc) 190 B
/** * Test if a given DOM element is invisible. * * @param elm - DOM element to test * @return Is the element invisible */ export default function invisible(elm: HTMLElement): boolean;