lossless-json
lossless-json copied to clipboard
Parse JSON without risk of losing numeric information
```js import { parse } from 'lossless-json' const text = '{"key":"first","key":"second"}' parse(text) ``` produces this error message: ``` SyntaxError: Duplicate key 'key' encountered at position 16 ``` but I would...
From #244: > I was disappointed that `LosslessNumber instance of Number` is false, also I get weird type errors from lossless-json, I had to add an `any` (`d` is a...
Hi community I have a question and unfortunately didn't find other place to ask. So, could someone explain, why native JSON.parse or Response: json() method are working so slower than...