FrontPastel/node_modules/dom-helpers/esm/ownerDocument.js

8 lines
185 B
JavaScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
/**
* Returns the owner document of a given element.
*
* @param node the element
*/
export default function ownerDocument(node) {
return node && node.ownerDocument || document;
}