A robust HTML entity encoder/decoder written in JavaScript.
-
Updated
Oct 19, 2018 - JavaScript
Currently, it's hardcoded that it uses web3 to rinkeby. That should not matter for decoding, but publish will fail, if on the wrong network.
Add a description, image, and links to the decode topic page so that developers can more easily learn about it.
To associate your repository with the decode topic, visit your repo's landing page and select "manage topics."
From our benchmarks we can see that we are consistently slower than everyone else when serializing/deserializing boolean values. We should fix that.
orjson is using an
unsafeblock to create a reference to a boolean:https://github.com/ijl/orjson/blob/03d55e99a953ce93cedc05f03e4b63b0bcbbcc7a/src/decode.rs#L81-L96
This avoids additional allocations.
For comparison, this is our code at the