Nathan Rashleigh

Results 4 issues of Nathan Rashleigh

I ran into issues using https://github.com/trentm/node-bunyan which makes use of this library. This PR simply converts BigInts to strings, which I think is reasonable because ``` > BigInt('11111111111111111111111111111111111'); 11111111111111111111111111111111111n ```...

``` > const log = require('bunyan').createLogger({ name: "bigints" }); undefined > log.info({ bignumber: 11111n }, 'here is a bigint'); Uncaught TypeError: Do not know how to serialize a BigInt at...

When the decoder encounters a HashMap keyed by integers it (correctly) decodes them into a JS Map, however the same field where the map is empty is decoded into a...

First of all, I have to say thank you for this library; I have found it extremely useful, ergonomic and it is an essential part of the project I am...