add the ability to pass a function to bodyParser that would then be passed to JSON.parse as a reviver #171
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR is contingent on a PR that is pending against co-body. While that PR is being processed this one is referencing my fork of that library.
This PR creates a new property on the option object called "customReviver" that accepts a function that would then be passed to co-body/parser when parsing json. Co-body then passes this function to JSON.parse as the second parameter in the parse signature.
The use case for this that if you would like to customize the way JSON.parse parses the json your api receives you can now do so by passing this function.
I have also provided a number of tests that prove the feature to work and not break other features.
Checklist