UNPKG

232 BJavaScriptView Raw
1/**
2 * 判断是否HTML元素
3 * @return {Boolean} 是否HTML元素
4 */
5var isElement = function (o) {
6 return o instanceof Element || o instanceof HTMLDocument;
7};
8export default isElement;
9//# sourceMappingURL=is-element.js.map
\No newline at end of file