We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17e2f1 commit 62ef0d2Copy full SHA for 62ef0d2
JetStreamDriver.js
@@ -190,9 +190,9 @@ class ShellFileLoader {
190
191
let contents;
192
if (compressed) {
193
- const bytes = new Int8Array(read(url, "binary"));
194
- bytes = zlib.decompress(bytes);
195
- contents = new TextDecoder().decode(bytes);
+ const compressedBytes = new Int8Array(read(url, "binary"));
+ const decompressedBytes = zlib.decompress(compressedBytes);
+ contents = new TextDecoder().decode(decompressedBytes);
196
} else {
197
contents = readFile(url);
198
}
0 commit comments