You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 25, 2022. It is now read-only.
Initial benchmarks suggest that KeyValues.parse parser is about 40x slower than JSON.parse. Almost all of this time is attributed to the creation of the AST, the conversion to an object is very fast.
First, the goal should be about 10x of the JSON.parse time.
Initial benchmarks suggest that
KeyValues.parseparser is about 40x slower thanJSON.parse. Almost all of this time is attributed to the creation of the AST, the conversion to an object is very fast.First, the goal should be about 10x of the
JSON.parsetime.