general: remove console logs, linting

This commit is contained in:
Rajeh Taher
2025-09-08 23:11:32 +03:00
parent d0f8713247
commit a2e7e070fc
4 changed files with 2 additions and 10 deletions
-1
View File
@@ -18,7 +18,6 @@ export const encodeWAM = (binaryInfo: BinaryInfo) => {
encodeWAMHeader(binaryInfo)
encodeEvents(binaryInfo)
console.log(binaryInfo.buffer)
const totalSize = binaryInfo.buffer.map(a => a.length).reduce((a, b) => a + b)
const buffer = Buffer.alloc(totalSize)
let offset = 0