@firebase/storage 0.13.2 → 0.13.3

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.
@@ -4,7 +4,6 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var app = require('@firebase/app');
6
6
  var util = require('@firebase/util');
7
- var undici = require('undici');
8
7
  var component = require('@firebase/component');
9
8
 
10
9
  /**
@@ -2148,7 +2147,6 @@ class FetchConnection {
2148
2147
  constructor() {
2149
2148
  this.errorText_ = '';
2150
2149
  this.sent_ = false;
2151
- this.fetch_ = undici.fetch;
2152
2150
  this.errorCode_ = ErrorCode.NO_ERROR;
2153
2151
  }
2154
2152
  async send(url, method, body, headers) {
@@ -2157,7 +2155,7 @@ class FetchConnection {
2157
2155
  }
2158
2156
  this.sent_ = true;
2159
2157
  try {
2160
- const response = await this.fetch_(url, {
2158
+ const response = await fetch(url, {
2161
2159
  method,
2162
2160
  headers: headers || {},
2163
2161
  body: body
@@ -2240,7 +2238,7 @@ class FetchStreamConnection extends FetchConnection {
2240
2238
  }
2241
2239
  this.sent_ = true;
2242
2240
  try {
2243
- const response = await this.fetch_(url, {
2241
+ const response = await fetch(url, {
2244
2242
  method,
2245
2243
  headers: headers || {},
2246
2244
  body: body
@@ -3363,7 +3361,7 @@ class FirebaseStorageImpl {
3363
3361
  }
3364
3362
 
3365
3363
  const name = "@firebase/storage";
3366
- const version = "0.13.2";
3364
+ const version = "0.13.3";
3367
3365
 
3368
3366
  /**
3369
3367
  * @license