saleor-apps-redis_apl/packages/shared/is-in-iframe.ts
Lukasz Ostrowski a641caf00f
Extract single shared package (#106)
* Extract isInIframe

* Fix SSR in trpc invoices

* Add changelog
2023-02-08 13:16:14 +01:00

7 lines
No EOL
116 B
TypeScript

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