mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-04-27 15:07:42 +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')
|
const path = require('path')
|
||||||
|
|
||||||
// Server
|
// Server
|
||||||
var PORT = process.env.PORT || 8080
|
const PORT = process.env.PORT || 8080
|
||||||
|
|
||||||
// Prepare application
|
// Prepare application
|
||||||
const app = express()
|
const app = express()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue