peertube-plugin-livechat/conversejs/lib/utils.ts

12 lines
139 B
TypeScript

function inIframe (): boolean {
try {
return window.self !== window.top
} catch (e) {
return true
}
}
export {
inIframe
}