Files
PIBD_21_Basalov_A_D_Interne…/node_modules/@popperjs/core/lib/dom-utils/getWindow.js.flow
2025-04-07 09:08:15 +03:00

17 lines
383 B
Plaintext

// @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;
}