Issues (124)

app/handlers/index.js (1 issue)

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
You are shadowing the built-in type InternalError. This makes code hard to read, consider using a different name.
Loading history...
5
const Input = require('./input')
6
7
module.exports = Compose([
8
	Input,
9
	InternalError,
10
	HttpError
11
])
12
13