@firebase/storage 0.9.13 → 0.9.14-canary.a9add5e44
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/CHANGELOG.md +6 -0
- package/dist/index.browser.cjs.js +10 -1
- package/dist/index.browser.cjs.js.map +1 -1
- package/dist/index.esm2017.js +10 -1
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +10 -1
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +4 -1
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +4 -1
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/implementation/error.d.ts +1 -0
- package/dist/node-esm/test/browser/string.browser.test.d.ts +17 -0
- package/dist/src/implementation/error.d.ts +1 -0
- package/dist/test/browser/string.browser.test.d.ts +17 -0
- package/package.json +6 -6
|
@@ -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.
|
|
3350
|
+
const version = "0.9.14-canary.a9add5e44";
|
|
3348
3351
|
|
|
3349
3352
|
/**
|
|
3350
3353
|
* @license
|