Files

10 lines
231 B
JavaScript
Raw Permalink Normal View History

2026-04-05 16:14:49 -04:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = ownerDocument;
function ownerDocument(node) {
return node && node.ownerDocument || document;
}
module.exports = exports["default"];