mfuntowicz's picture
mfuntowicz HF Staff
Upload folder using huggingface_hub
04ec17f verified
raw
history blame
189 Bytes
export function isOrContainsTarget(node, target) {
return node === target || node.contains(target);
}
export function getOwnerDocument(el) {
return el?.ownerDocument ?? document;
}