Skip to content

Commit 73ca971

Browse files
committed
chore: remove dead code
1 parent fcbbc34 commit 73ca971

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/lzw.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ class LzwDecoder {
3030
data.byteOffset,
3131
data.byteLength,
3232
);
33-
const table = new Map<number, number[]>();
34-
for (let i = 0; i < 256; i++) {
35-
table.set(i, [i]);
36-
}
3733
this.currentBit = 0;
3834
this.tableLength = TABLE_START;
3935
this.currentBitLength = MIN_BIT_LENGTH;

0 commit comments

Comments
 (0)