@firebase/storage 0.9.13 → 0.9.14

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.
@@ -1071,6 +1071,9 @@ function base64Bytes_(format, value) {
1071
1071
  bytes = decodeBase64(value);
1072
1072
  }
1073
1073
  catch (e) {
1074
+ if (e.message.includes('polyfill')) {
1075
+ throw e;
1076
+ }
1074
1077
  throw invalidFormat(format, 'Invalid character found');
1075
1078
  }
1076
1079
  const array = new Uint8Array(bytes.length);
@@ -3344,7 +3347,7 @@ class FirebaseStorageImpl {
3344
3347
  }
3345
3348
 
3346
3349
  const name = "@firebase/storage";
3347
- const version = "0.9.13";
3350
+ const version = "0.9.14";
3348
3351
 
3349
3352
  /**
3350
3353
  * @license