(req, res, next)
| 103 | |
| 104 | // Reads the request body and calls the actual patch handler |
| 105 | function handler (req, res, next) { |
| 106 | debug('PATCH -- handler called for:', req.originalUrl || req.url) |
| 107 | readEntity(req, res, () => patchHandler(req, res, next)) |
| 108 | } |
| 109 | |
| 110 | const readEntity = bodyParser.text({ type: () => true }) |
| 111 |
nothing calls this directly
no test coverage detected