@firebase/util 1.10.3 → 1.11.0

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.
@@ -1,3 +1,5 @@
1
+ import { getDefaultsFromPostinstall } from '../postinstall.mjs';
2
+
1
3
  /**
2
4
  * @license
3
5
  * Copyright 2017 Google LLC
@@ -550,7 +552,8 @@ const getDefaultsFromCookie = () => {
550
552
  */
551
553
  const getDefaults = () => {
552
554
  try {
553
- return (getDefaultsFromGlobal() ||
555
+ return (getDefaultsFromPostinstall() ||
556
+ getDefaultsFromGlobal() ||
554
557
  getDefaultsFromEnvVariable() ||
555
558
  getDefaultsFromCookie());
556
559
  }