bbmc-binarystream
v1.0.0
Published
BlueBirdMC's BinaryStream
Readme
BinaryStream
BlueBirdMC's BinaryStream
How to use?
Here is some example code
const BinaryStream = require("bbmc-binarystream");
let stream = new BinaryStream();
stream.writeIntLE(12);
console.log(stream.readIntLE());