chore: Use const instead of var

Signed-off-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Richie Bendall 2020-03-18 17:53:51 +13:00
parent eb1c86aca8
commit 5a2c74357f
No known key found for this signature in database
GPG key ID: 1C6A99DFA9D306FC

View file

@ -13,7 +13,7 @@ const tempdir = require('temp-dir')
const path = require('path')
// Server
var PORT = process.env.PORT || 8080
const PORT = process.env.PORT || 8080
// Prepare application
const app = express()