Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- "use strict";
-
- /**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- * @format
- *
- * @emails oncall+draft_js
- */
- function isInstanceOfNode(target) {
- // we changed the name because of having duplicate module provider (fbjs)
- if (!target || !('ownerDocument' in target)) {
- return false;
- }
-
- if ('ownerDocument' in target) {
- var node = target;
-
- if (!node.ownerDocument.defaultView) {
- return node instanceof Node;
- }
-
- if (node instanceof node.ownerDocument.defaultView.Node) {
- return true;
- }
- }
-
- return false;
- }
-
- module.exports = isInstanceOfNode;
|