is-element.js 312 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. /**
  4. * 判断是否HTML元素
  5. * @return {Boolean} 是否HTML元素
  6. */
  7. var isElement = function (o) {
  8. return o instanceof Element || o instanceof HTMLDocument;
  9. };
  10. exports.default = isElement;
  11. //# sourceMappingURL=is-element.js.map