mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-13 09:41:57 +00:00
4 lines
104 B
TypeScript
4 lines
104 B
TypeScript
export function isElement(node: any): node is Element {
|
|
return node.nodeType === Node.ELEMENT_NODE;
|
|
}
|