pawitp / protobuf-decoder

JavaScript-based web UI to decode ad-hoc Protobuf data
https://protobuf-decoder.netlify.app/
MIT License
392 stars 91 forks source link

Support for 64-bit integers in fixed64 #3

Closed pawitp closed 5 years ago

pawitp commented 5 years ago

Currently, fixed64 field is decoded as double. We should be able to decode it as int64 and uint64 too.

In addition, the current varint decoding may not handle int64 properly because JavaScript treats everything as a double.

pawitp commented 5 years ago

Varint separated out to #9