Remove unused lastCode property from the LZWStream class (PR 324 follow-up)

This appear to have been unused already in PR 324 all the way back in 2011.
This commit is contained in:
Jonas Jenwald 2026-02-25 13:31:44 +01:00
parent bc8efa190c
commit 80db3609f4

View File

@ -56,7 +56,6 @@ class LZWStream extends DecodeStream {
}
this.bitsCached = bitsCached -= n;
this.cachedData = cachedData;
this.lastCode = null;
return (cachedData >>> bitsCached) & ((1 << n) - 1);
}