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 byte;
mod int8;
mod int16;
mod int24;
mod int32;
mod int64;
mod short;
mod long;

pub use byte::Byte;
pub use int8::Int8;
pub use int16::Int16;
pub use int24::Int24;
pub use int32::Int32;
pub use int64::Int64;
pub use short::Short;
pub use long::Long;