darrachequesne / notepack

A fast Node.js implementation of the latest MessagePack spec
MIT License
75 stars 19 forks source link

fix encoding for non-finite numbers #4

Closed darrachequesne closed 7 years ago

darrachequesne commented 7 years ago

New format (instead of throwing an error):

NaN: <Buffer cb 7f f8 00 00 00 00 00 00>
Infinity: <Buffer cb 7f f0 00 00 00 00 00 00>
-Infinity: <Buffer cb ff f0 00 00 00 00 00 00>

Note: compatible with msgpack-lite