You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
218 B
6 lines
218 B
1 year ago
|
export default function(node) {
|
||
|
return (node.ownerDocument && node.ownerDocument.defaultView) // node is a Node
|
||
|
|| (node.document && node) // node is a Window
|
||
|
|| node.defaultView; // node is a Document
|
||
|
}
|