express-debug
express-debug copied to clipboard
Route profile missing when same fn assigned to multiple methods
Duplication: Assign the same route function to both get and post.
app.get('/', routes.landing); app.post('/', routes.landing);
Result: get route will be profiled, post route will not.