Closed lxsmnsyc closed 1 year ago
Add toJSONString and fromJSONString to skip the use of JSON.stringify and JSON.parse in userland (also because JSON.stringify has some bottleneck)
toJSONString
fromJSONString
JSON.stringify
JSON.parse
Conclusion: not worth it. JSON.stringify is still fastest in most cases
Add
toJSONString
andfromJSONString
to skip the use ofJSON.stringify
andJSON.parse
in userland (also becauseJSON.stringify
has some bottleneck)