12 lines
139 B
TypeScript
12 lines
139 B
TypeScript
|
function inIframe (): boolean {
|
||
|
try {
|
||
|
return window.self !== window.top
|
||
|
} catch (e) {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
inIframe
|
||
|
}
|