1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-25 20:53:15 +00:00

removed debug output from crc32-stream

This commit is contained in:
Bryan Roe
2020-06-15 13:33:28 -07:00
parent 3b1dc835eb
commit 3f0ae06e65
2 changed files with 1 additions and 2 deletions

View File

@@ -23,7 +23,6 @@ function create(useCRC32c)
{
write: function (chunk, flush)
{
console.log(chunk.toString());
this._current = this._CRC32C ? crc32c(chunk, this._current) : crc32(chunk, this._current);
flush();
},