1.0.2 • Published 1 year ago
@atcute/varint v1.0.2
@atcute/varint
protobuf-style LEB128 varint codec library.
import { encode } from '@atcute/varint';
const encoded: number[] = [];
const encodedLength = encode(420, encoded);
console.log(encoded, encodedLength);
// -> encoded: Array(2) [164, 3]
// -> encodedLength: 2