blob: 474c161fec785e243c52875fcee5c29301817149 [file] [log] [blame] [edit]
import isDocument from './isDocument';
export default function isWindow(node) {
if ('window' in node && node.window === node) return node;
if (isDocument(node)) return node.defaultView || false;
return false;
}