1.0.0 • Published 11 months ago

@atcute/varint v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
11 months ago

@atcute/varint

codec for Protobuf-style varint bytes

import { encode } from '@atcute/varint';

const encoded: number[] = [];
const encodedLength = encode(420, encoded);

console.log(encoded, encodedLength);
// -> encoded: Array(2) [164, 3]
// -> encodedLength: 2
1.0.0

11 months ago