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