@firebase/storage 0.11.2 → 0.12.0-20231120214520

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,6 +1,6 @@
1
1
  import { getApp, _getProvider, _registerComponent, registerVersion, SDK_VERSION } from '@firebase/app';
2
2
  import { __extends, __spreadArray, __assign, __awaiter, __generator } from 'tslib';
3
- import { FirebaseError, isNode, createMockUserToken, getModularInstance, getDefaultEmulatorHostnameAndPort } from '@firebase/util';
3
+ import { FirebaseError, createMockUserToken, getModularInstance, getDefaultEmulatorHostnameAndPort } from '@firebase/util';
4
4
  import { Component } from '@firebase/component';
5
5
 
6
6
  /**
@@ -569,9 +569,7 @@ function isNativeBlob(p) {
569
569
  return isNativeBlobDefined() && p instanceof Blob;
570
570
  }
571
571
  function isNativeBlobDefined() {
572
- // Note: The `isNode()` check can be removed when `node-fetch` adds native Blob support
573
- // PR: https://github.com/node-fetch/node-fetch/pull/1664
574
- return typeof Blob !== 'undefined' && !isNode();
572
+ return typeof Blob !== 'undefined';
575
573
  }
576
574
  function validateNumber(argument, minValue, maxValue, value) {
577
575
  if (value < minValue) {
@@ -3530,7 +3528,7 @@ var FirebaseStorageImpl = /** @class */ (function () {
3530
3528
  }());
3531
3529
 
3532
3530
  var name = "@firebase/storage";
3533
- var version = "0.11.2";
3531
+ var version = "0.12.0-20231120214520";
3534
3532
 
3535
3533
  /**
3536
3534
  * @license