3 lines
76 B
JavaScript
3 lines
76 B
JavaScript
|
function isHtmlElement(object) {
|
||
|
return object instanceof HTMLElement;
|
||
|
}
|