1 /** 2 * Checks whether we are loaded in iframe. 3 * 4 * @returns {boolean} Whether the current page is loaded in an iframe. 5 */ 6 export function inIframe(): boolean { 7 if (navigator.product === 'ReactNative') { 8 return false; 9 } 10 11 try { 12 return window.self !== window.top; 13 } catch (e) { 14 return true; 15 } 16 }