binarystream 1.2.0

Binarystream is a simple package designed to simplify streaming of binary data in Javascript, while being written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
mod varint;
mod zigzag;
mod varlong;
mod zigzong;

pub use varint::VarInt;
pub use zigzag::ZigZag;
pub use varlong::VarLong;
pub use zigzong::ZigZong;