mirror of
https://github.com/idanoo/GoScrobble
synced 2025-06-30 21:22:18 +00:00
8 lines
No EOL
185 B
JavaScript
8 lines
No EOL
185 B
JavaScript
/**
|
|
* Returns the owner document of a given element.
|
|
*
|
|
* @param node the element
|
|
*/
|
|
export default function ownerDocument(node) {
|
|
return node && node.ownerDocument || document;
|
|
} |