UNPKG

@popperjs/core

Version:

Tooltip and Popover Positioning Engine

12 lines (10 loc) 273 B
export default function getWindow(node) { if (node == null) { return window; } if (node.toString() !== '[object Window]') { var ownerDocument = node.ownerDocument; return ownerDocument ? ownerDocument.defaultView || window : window; } return node; }