binarystream 2.6.10

A simple binary stream for Node.js
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod bool;
mod uint8;
mod uint16;
mod uint24;
mod uint32;
mod uint64;
mod ushort;
mod ulong;

pub use bool::Bool;
pub use uint8::Uint8;
pub use uint16::Uint16;
pub use uint24::Uint24;
pub use uint32::Uint32;
pub use uint64::Uint64;
pub use ushort::UShort;
pub use ulong::ULong;