saleor-apps-redis_apl/packages/shared/is-in-iframe.ts

7 lines
116 B
TypeScript
Raw Normal View History

2023-02-07 18:11:39 +00:00
export function isInIframe() {
try {
return window.self !== window.top;
} catch (e) {
return true;
}
}