@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.
package/dist/index.cjs.js CHANGED
@@ -541,9 +541,7 @@ function isNativeBlob(p) {
541
541
  return isNativeBlobDefined() && p instanceof Blob;
542
542
  }
543
543
  function isNativeBlobDefined() {
544
- // Note: The `isNode()` check can be removed when `node-fetch` adds native Blob support
545
- // PR: https://github.com/node-fetch/node-fetch/pull/1664
546
- return typeof Blob !== 'undefined' && !util.isNode();
544
+ return typeof Blob !== 'undefined';
547
545
  }
548
546
  function validateNumber(argument, minValue, maxValue, value) {
549
547
  if (value < minValue) {
@@ -3352,7 +3350,7 @@ class FirebaseStorageImpl {
3352
3350
  }
3353
3351
 
3354
3352
  const name = "@firebase/storage";
3355
- const version = "0.11.2";
3353
+ const version = "0.12.0-20231120214520";
3356
3354
 
3357
3355
  /**
3358
3356
  * @license