qcobjects 2.5.114-beta → 2.5.115-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4960,7 +4960,13 @@ var require_MainProcess = __commonJS({
4960
4960
  Class("GLOBAL", _QC_CLASSES.global);
4961
4961
  Export(ClassFactory("GLOBAL"));
4962
4962
  }
4963
- Export(global);
4963
+ if (isBrowser && typeof window !== "undefined") {
4964
+ set("global", window);
4965
+ } else if (typeof global !== "undefined") {
4966
+ set("global", global);
4967
+ } else if (typeof globalThis !== "undefined") {
4968
+ set("global", globalThis);
4969
+ }
4964
4970
  loadSDK_default();
4965
4971
  })(_top2);
4966
4972
  if (isBrowser) {