superagent-serializer icon indicating copy to clipboard operation
superagent-serializer copied to clipboard

Superagent plugin to convert server payload into different cases

Results 3 superagent-serializer issues
Sort by recently updated
recently updated
newest added

I suggest that the second parameter `type` should also accept a function as custom normalizer. For example: ``` js var request = require('superagent'); var serializer = require('superagent-serializer'); var customNormalizer =...

So as i understand this: ``` { "first_name": "Hector", "last-name": "Zarco" } ``` Will be converted to this?: ``` { "firstName": "Zarco", "lastName": "Hector Zarco" } ``` Check last name......