@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.
@@ -2,6 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
+ var postinstall = require('./postinstall.js');
6
+
5
7
  /**
6
8
  * @license
7
9
  * Copyright 2017 Google LLC
@@ -554,7 +556,8 @@ const getDefaultsFromCookie = () => {
554
556
  */
555
557
  const getDefaults = () => {
556
558
  try {
557
- return (getDefaultsFromGlobal() ||
559
+ return (postinstall.getDefaultsFromPostinstall() ||
560
+ getDefaultsFromGlobal() ||
558
561
  getDefaultsFromEnvVariable() ||
559
562
  getDefaultsFromCookie());
560
563
  }