@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
20 lines (19 loc) • 779 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.shouldForceTracking = void 0;
// START: temporary code https://product-fabric.atlassian.net/browse/ED-10260
var shouldForceTracking = exports.shouldForceTracking = function shouldForceTracking() {
try {
var _ref = window.__buildInfo || {},
_ref$FRONTEND_VERSION = _ref.FRONTEND_VERSION,
FRONTEND_VERSION = _ref$FRONTEND_VERSION === void 0 ? '' : _ref$FRONTEND_VERSION;
return window.location.hostname === 'product-fabric.atlassian.net' && FRONTEND_VERSION.includes('branch-deploy');
} catch (err) {
// eslint-disable-next-line no-console
console.warn(err);
return false;
}
};
// END: temporary code https://product-fabric.atlassian.net/browse/ED-10260