@shopgate/engage
Version:
Shopgate's ENGAGE library.
4 lines • 410 B
JavaScript
/* global SGJavascriptBridge */import{hasSGJavaScriptBridge}from'@shopgate/pwa-core';/**
* Checks whether the web bridge is active.
* @returns {boolean}
*/export function hasWebBridge(){var _SGJavascriptBridge;if(!hasSGJavaScriptBridge()){return false;}return['web','desktop','mobile'].includes((_SGJavascriptBridge=SGJavascriptBridge)===null||_SGJavascriptBridge===void 0?void 0:_SGJavascriptBridge.type);}