lossless-json icon indicating copy to clipboard operation
lossless-json copied to clipboard

Parse JSON without risk of losing numeric information

Results 3 lossless-json issues
Sort by recently updated
recently updated
newest added

```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...

enhancement
help wanted

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...

enhancement

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...

question