@firebase/firestore 3.0.2-canary.4d2a54fb0 → 3.0.2-canary.4e7aba48a

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.
@@ -15,7 +15,7 @@ var path = require('path');
15
15
  var protoLoader = require('@grpc/proto-loader');
16
16
 
17
17
  var name = "@firebase/firestore";
18
- var version$1 = "3.0.2-canary.4d2a54fb0";
18
+ var version$1 = "3.0.2-canary.4e7aba48a";
19
19
  /**
20
20
  * @license
21
21
  * Copyright 2017 Google LLC
@@ -67,7 +67,7 @@ User.UNAUTHENTICATED = new User(null);
67
67
  User.GOOGLE_CREDENTIALS = new User('google-credentials-uid');
68
68
  User.FIRST_PARTY = new User('first-party-uid');
69
69
  User.MOCK_USER = new User('mock-user');
70
- var version = "9.0.2-canary.4d2a54fb0";
70
+ var version = "9.0.2-canary.4e7aba48a";
71
71
  /**
72
72
  * @license
73
73
  * Copyright 2017 Google LLC
@@ -2187,7 +2187,7 @@ var SimpleDb = /** @class */ (function () {
2187
2187
  };
2188
2188
  /** Returns true if IndexedDB is available in the current environment. */
2189
2189
  SimpleDb.isAvailable = function () {
2190
- if (typeof indexedDB === 'undefined') {
2190
+ if (!util.isIndexedDBAvailable()) {
2191
2191
  return false;
2192
2192
  }
2193
2193
  if (SimpleDb.isMockPersistence()) {