UNPKG

dom-tools

Version:

A tiny collection of DOM helpers for IE8+.

12 lines (9 loc) 242 B
// react-bootstrap/dom-helpers 2.4.0 query/isWindow.js function getWindow(node) { return node === node.window ? node : node.nodeType === 9 ? node.defaultView || node.parentWindow : false; } module.exports = getWindow;