json-body-trim
v1.0.0
Published
Deletes all white spaces from the request.
Downloads
4
Maintainers
Readme
JSON Body Trim
Json white space cleaner
Install
$ npm i json-body-trim --save
API
const jsonBodyTrim = require('json-body-trim');
const app = require('express')();
app.use(jsonBodyTrim());
...
Example
const jsonBodyTrim = require('json-body-trim');
const bodyParser = require('body-parser');
const app = require('express')();
app.use(bodyParser.json());
app.use(jsonBodyTrim());
app.post('/', (req, res) => {
res.send(req.body);
})
app.listen(8080);
// post localhost:8080 this data: {" test ": "hello "}
// response this data: {"test":"hello"}