This commit is contained in:
16
module/@popperjs/core@2.11.8/lib/dom-utils/getWindow.js.flow
Normal file
16
module/@popperjs/core@2.11.8/lib/dom-utils/getWindow.js.flow
Normal file
@@ -0,0 +1,16 @@
|
||||
// @flow
|
||||
import type { Window } from '../types';
|
||||
declare function getWindow(node: Node | Window): Window;
|
||||
|
||||
export default function getWindow(node) {
|
||||
if (node == null) {
|
||||
return window;
|
||||
}
|
||||
|
||||
if (node.toString() !== '[object Window]') {
|
||||
const ownerDocument = node.ownerDocument;
|
||||
return ownerDocument ? ownerDocument.defaultView || window : window;
|
||||
}
|
||||
|
||||
return node;
|
||||
}
|
||||
Reference in New Issue
Block a user