Skip to content

v1.0.17

Choose a tag to compare

@brandonlehmann brandonlehmann released this 10 May 16:45
· 6 commits to master since this release
a4fba2b

Byte-Packing Library

Documentation

https://gibme-npm.github.io/bytepack/

Sample Code

import { Reader, Writer } from '@gibme/bytepack';

const writer = new Writer();

writer.uint8_t(8);

const reader = new Reader(writer);

console.log(reader.uint8_t());