Description
.NET-Style BinaryReader Class.
Installation
npm install binary-ts
Usage
; // ... ; // read int16 Array with length 4 and force littleEndian and advances the current position; // read utf8 string with bytelength of 64 and advances the current position; // align the current position to a multiple of 8 bitreader.align8; // read next one byte(uint8) and advances the current position;