8 lines
117 B
TypeScript
8 lines
117 B
TypeScript
![]() |
export function isInIframe() {
|
||
|
try {
|
||
|
return window.self !== window.top;
|
||
|
} catch (e) {
|
||
|
return true;
|
||
|
}
|
||
|
}
|