twolfson / gif-encoder

Streaming GIF encoder
The Unlicense
87 stars 10 forks source link

Fix global vars in LZWEncoder #6

Closed mattbierner closed 8 years ago

mattbierner commented 8 years ago

Bug A few vars in LZWEncoder are globals, preventing strict mode from working.

I was trying to use this library with Babel/webpack, which automatically tacks on "use strict".

Fix Scope the 3 offending vars to the LZWEncoder class instead, which seems like the original intent.

twolfson commented 8 years ago

Looks good to me, thanks for the patch :+1:

twolfson commented 8 years ago

This has been merged/released in 0.4.3. Thanks again!