8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
export function isHTMLElement(elem: Element): elem is HTMLElement {
|
|
return elem instanceof HTMLElement;
|
|
}
|
|
|
|
export function isNightMode(): boolean {
|
|
return document.body.classList.contains("nightMode");
|
|
}
|