Alejandro Santiago
Alejandro Santiago
- https://github.com/zserge/jsmn: jsmn has a different approach to work with JSON structures but it could be great to compare its performance with fast-json. - https://github.com/creationix/jsonparse - https://github.com/luizperes/simdjson_nodejs - https://github.com/fastify/secure-json-parse
Research about complex JSON structures and examples in order to create more and better unit tests. https://www.json.org/json-en.html http://seriot.ch/parsing_json.php
The following code produces an empty object as result: ``` var obj = { a: 'b' }; var expect = { }; var map = { z: 'a.b' }; om(obj,...