We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcbbc34 commit 73ca971Copy full SHA for 73ca971
src/lzw.ts
@@ -30,10 +30,6 @@ class LzwDecoder {
30
data.byteOffset,
31
data.byteLength,
32
);
33
- const table = new Map<number, number[]>();
34
- for (let i = 0; i < 256; i++) {
35
- table.set(i, [i]);
36
- }
37
this.currentBit = 0;
38
this.tableLength = TABLE_START;
39
this.currentBitLength = MIN_BIT_LENGTH;
0 commit comments