lint: lint files

This commit is contained in:
Adhiraj Singh
2022-06-22 10:54:07 +05:30
parent a1082e85ed
commit 4a66e60af3

View File

@@ -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])
)