iwoplaza / typed-binary

Describe binary structures with full TypeScript support. Encode and decode into pure JavaScript objects.
MIT License
25 stars 1 forks source link

Explore using DataViews instead of multiple TypedArrays for BufferReader/Writer. #10

Open iwoplaza opened 2 months ago

iwoplaza commented 2 months ago

mdn web docs - DataView

Apparently it allows for controlling endianness, which means we can remove some of the code related to that.