remove console.log testing from decodeBufferText
This commit is contained in:
@@ -37,7 +37,6 @@ class WTVShared {
|
|||||||
decodeBufferText(buf) {
|
decodeBufferText(buf) {
|
||||||
var out = "";
|
var out = "";
|
||||||
for (var i = 0; i < buf.data.length; i++) {
|
for (var i = 0; i < buf.data.length; i++) {
|
||||||
console.log(buf.data[i]);
|
|
||||||
out += String.fromCharCode(buf.data[i]);
|
out += String.fromCharCode(buf.data[i]);
|
||||||
}
|
}
|
||||||
return out;
|
return out;
|
||||||
|
|||||||
Reference in New Issue
Block a user