UNPKG

@antv/util

Version:

> AntV 底层依赖的工具库,不建议在自己业务中使用。

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; }