@hcaptcha/react-hcaptcha
Version:
A React library for hCaptcha
12 lines • 309 B
JavaScript
function getFrame(element) {
var doc = element && element.ownerDocument || document;
var win = doc.defaultView || doc.parentWindow || window;
return {
document: doc,
window: win
};
}
function getMountElement(element) {
return element || document.head;
}
export { getFrame, getMountElement };