Skip to content

MFDGaming/BBMC-BinaryStream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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