7 lines
No EOL
116 B
TypeScript
7 lines
No EOL
116 B
TypeScript
export function isInIframe() {
|
|
try {
|
|
return window.self !== window.top;
|
|
} catch (e) {
|
|
return true;
|
|
}
|
|
} |