chore: deps

This commit is contained in:
iCrawl
2022-09-04 19:33:57 +02:00
parent 8b3d006118
commit 4ffdada4f7
21 changed files with 722 additions and 612 deletions

View File

@@ -101,7 +101,6 @@ export class VoiceReceiver {
// Open packet
const decrypted = methods.open(buffer.slice(12, end), nonce, secretKey);
if (!decrypted) return;
// eslint-disable-next-line consistent-return
return Buffer.from(decrypted);
}
@@ -124,7 +123,6 @@ export class VoiceReceiver {
packet = packet.subarray(4 + 4 * headerExtensionLength);
}
// eslint-disable-next-line consistent-return
return packet;
}