class dom_manager { static is_element(target) { return target instanceof HTMLElement; } static validate_element(target) { if (!self.is_element(target)) { throw "Parameter must be HTMLElement."; } } } export { dom_manager };