v0.1.0
A Deno module and helper class that provides an easy way to read different types from a binary array buffer.
Repository
Current version released
5 years ago
Binary Reader
A Deno module helper class that wraps around DataView to provide an easy way to read different types from a binary array buffer while maintaining the current buffer position.
Usage
import BinaryReader from "binary_reader.ts;
let binaryReader = new BinaryReader(buffer);
let data = binaryReader.readUint8();