mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
7 lines
212 B
TypeScript
7 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");
|
|
}
|