mirror of
https://github.com/FranP-code/Baileys.git
synced 2025-10-13 00:32:22 +00:00
lint: lint files
This commit is contained in:
@@ -25,6 +25,7 @@ export const encodeBinaryNode = (
|
||||
const pushInt16 = (value: number) => {
|
||||
pushBytes([(value >> 8) & 0xff, value & 0xff])
|
||||
}
|
||||
|
||||
const pushInt20 = (value: number) => (
|
||||
pushBytes([(value >> 16) & 0x0f, (value >> 8) & 0xff, value & 0xff])
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user