mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-03-25 09:25:49 +00:00
chore: Use const instead of var
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
parent
eb1c86aca8
commit
5a2c74357f
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue