5 lines
162 B
Plaintext
5 lines
162 B
Plaintext
import ownerDocument from '../ownerDocument';
|
|
export default function ownerWindow(node) {
|
|
const doc = ownerDocument(node);
|
|
return doc.defaultView || window;
|
|
} |