fast-json-stringify icon indicating copy to clipboard operation
fast-json-stringify copied to clipboard

2x faster than JSON.stringify()

Results 60 fast-json-stringify issues
Sort by recently updated
recently updated
newest added

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

bug
help wanted

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

bug

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

enhancement
good first issue

### 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 = {...

bug
good first issue

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