Davide Mancuso
Davide Mancuso
Hi there, thanks for this really well-thought library. In my use case I already have a concrete JsonObject which I want to validate against a schema and apply defaults (`withDefaultValues(true)`),...
Currently ```javascript const obj1 = { a: "A", b: "B", c: "C" }; const obj2 = { c: "C", b: "B", a: "A" }; ``` serialize to different CBOR bytes...
It looks that the parser does not correctly handle entities in the form &#...; (e.g. Zürich -> Zürich). They get translated into empty strings because _replaceEntity calls the following (line...