UNPKG

@antv/util

Version:

<h1 align="center">@antv/util</h1>

8 lines (7 loc) 250 B
/** * 判断值是否为 HTML Element 或 Document * @return 是否为 HTML Element 或 Document */ export default function isElement(value: unknown): value is Element | Document { return value instanceof Element || value instanceof Document; }