Skip to content

v1.0.11

Choose a tag to compare

@brandonlehmann brandonlehmann released this 21 Jul 14:30
· 9 commits to master since this release
35bc326

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());