Use const for fs/path requires

This commit is contained in:
Kevin Sawicki 2016-02-04 09:16:40 -08:00
parent 2b5cbe825a
commit 8df3856c8f

View file

@ -4,8 +4,8 @@ const dialog = electron.dialog;
const shell = electron.shell;
const Menu = electron.Menu;
var fs = require('fs');
var path = require('path');
const fs = require('fs');
const path = require('path');
// Quit when all windows are closed and no other one is listening to this.
app.on('window-all-closed', function() {