@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.
@@ -573,9 +573,7 @@ function isNativeBlob(p) {
573
573
  return isNativeBlobDefined() && p instanceof Blob;
574
574
  }
575
575
  function isNativeBlobDefined() {
576
- // Note: The `isNode()` check can be removed when `node-fetch` adds native Blob support
577
- // PR: https://github.com/node-fetch/node-fetch/pull/1664
578
- return typeof Blob !== 'undefined' && !util.isNode();
576
+ return typeof Blob !== 'undefined';
579
577
  }
580
578
  function validateNumber(argument, minValue, maxValue, value) {
581
579
  if (value < minValue) {
@@ -3534,7 +3532,7 @@ var FirebaseStorageImpl = /** @class */ (function () {
3534
3532
  }());
3535
3533
 
3536
3534
  var name = "@firebase/storage";
3537
- var version = "0.11.2";
3535
+ var version = "0.12.0-20231120214520";
3538
3536
 
3539
3537
  /**
3540
3538
  * @license