garyvv /
node-sharp
| 1 | const Compose = require ('koa-compose') |
||
| 2 | |||
| 3 | const HttpError = require('./http_error') |
||
| 4 | const InternalError = require('./internal_error') |
||
|
0 ignored issues
–
show
Comprehensibility
introduced
by
Loading history...
|
|||
| 5 | const Input = require('./input') |
||
| 6 | |||
| 7 | module.exports = Compose([ |
||
| 8 | Input, |
||
| 9 | InternalError, |
||
| 10 | HttpError |
||
| 11 | ]) |
||
| 12 | |||
| 13 |