mirror of
https://github.com/typicode/json-server.git
synced 2025-07-28 12:43:18 +08:00
5 lines
92 B
JavaScript
5 lines
92 B
JavaScript
module.exports = function (req, res, next) {
|
|
res.header('name', req.body.name)
|
|
next()
|
|
}
|