Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

3 лет назад
123456789101112131415161718192021222324252627
  1. /**
  2. * Copyright (c) Facebook, Inc. and its affiliates.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. *
  7. * @format
  8. * @flow strict
  9. * @emails oncall+draft_js
  10. */
  11. function isHTMLElement(node: ?Node): boolean {
  12. if (!node || !node.ownerDocument) {
  13. return false;
  14. }
  15. if (!node.ownerDocument.defaultView) {
  16. return node instanceof HTMLElement;
  17. }
  18. if (node instanceof node.ownerDocument.defaultView.HTMLElement) {
  19. return true;
  20. }
  21. return false;
  22. }
  23. module.exports = isHTMLElement;