(req, res, next)
| 152 | } |
| 153 | |
| 154 | function cachedMiddleware(req, res, next) { |
| 155 | var point = getPoint(req); |
| 156 | // console.log('cmw',point,req.url); |
| 157 | if (point) { |
| 158 | return point.handle(req,res,next); |
| 159 | } |
| 160 | next(); |
| 161 | } |
| 162 | }; |
nothing calls this directly
no test coverage detected