json / src /lib /utils /widget.ts
xinnni's picture
Upload 146 files
f909d7c verified
raw
history blame contribute delete
115 Bytes
export function isIframe() {
try {
return window.self !== window.top;
} catch (e) {
return true;
}
}