Use arrow functions

This commit is contained in:
Michael Jackson 2016-04-12 05:27:05 -07:00
parent 2f5f4169a5
commit 0886f7ac6a
1 changed files with 1 additions and 1 deletions

View File

@ -48,6 +48,6 @@ app.use(createRequestHandler({
autoIndex: autoIndex
}))
app.listen(port, function () {
app.listen(port, () => {
console.log('Server started on port %s, Ctrl+C to quit', port)
})