saleor-apps-redis_apl/packages/shared/is-in-iframe.ts
2023-02-07 21:31:58 +01:00

7 lines
No EOL
116 B
TypeScript

export function isInIframe() {
try {
return window.self !== window.top;
} catch (e) {
return true;
}
}