Style: Use let/const instead of var

This commit is contained in:
Feross Aboukhadijeh
2016-09-28 15:52:24 -07:00
parent 5623c1024e
commit 76e071e965
5 changed files with 75 additions and 75 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env node
var config = require('../src/config')
var open = require('open')
const config = require('../src/config')
const open = require('open')
open(config.CONFIG_PATH)