fast-json-stringify
fast-json-stringify copied to clipboard
2x faster than JSON.stringify()
### Prerequisites - [X] I have written a descriptive issue title - [X] I have searched existing issues to ensure the bug has not already been reported ### Fastify version...
### Prerequisites - [X] I have written a descriptive issue title - [X] I have searched existing issues to ensure the bug has not already been reported ### Fastify version...
### Prerequisites - [X] I have written a descriptive issue title - [X] I have searched existing issues to ensure the bug has not already been reported ### Fastify version...
### Prerequisites - [X] I have written a descriptive issue title - [X] I have searched existing issues to ensure the regression has not already been reported ### Last working...
### Prerequisites - [X] I have written a descriptive issue title - [X] I have searched existing issues to ensure the issue has not already been raised ### Issue As...
#### Checklist - [x] run `npm run test` and `npm run benchmark` - [x] tests and/or benchmarks are included - [ ] documentation is changed or added - [ ]...
### Prerequisites - [X] I have written a descriptive issue title - [X] I have searched existing issues to ensure the issue has not already been raised ### Issue There...
## 🐛 Bug Report oneOf/anyOf doesn't seem to work with objects. ## To Reproduce The following schema models a union type, i.e. in TypeScript terms: ```ts type Foo = {...
Hello eveyone, I'd like to know if there are plans to add the native JSON.stringifys replacer() functionality like: `JSON.stringify(input, (key, value) => value instanceof Set ? [...value] : value)` So...
### What this PR does An issue from #301. We add support for `Set` in this PR only. A `new Set([1, 2, 3, 4])` will be stringified to `[1,2,3,4]` ####...