Use const instead of var

This commit is contained in:
Kevin Sawicki 2016-08-08 13:06:14 -07:00
parent 49908fd818
commit dd6c69c90b

View file

@ -10,7 +10,7 @@ class AutoUpdater extends EventEmitter {
return this.emitError('No update available, can\'t quit and install') return this.emitError('No update available, can\'t quit and install')
} }
squirrelUpdate.processStart() squirrelUpdate.processStart()
return app.quit() app.quit()
} }
getFeedURL () { getFeedURL () {
@ -39,15 +39,12 @@ class AutoUpdater extends EventEmitter {
this.updateAvailable = true this.updateAvailable = true
this.emit('update-available') this.emit('update-available')
squirrelUpdate.update(this.updateURL, (error) => { squirrelUpdate.update(this.updateURL, (error) => {
var date, releaseNotes, version
if (error != null) { if (error != null) {
return this.emitError(error) return this.emitError(error)
} }
releaseNotes = update.releaseNotes const {releaseNotes, version} = update
version = update.version // Date is not available on Windows, so fake it.
const date = new Date()
// Following information is not available on Windows, so fake them.
date = new Date()
this.emit('update-downloaded', {}, releaseNotes, version, date, this.updateURL, () => { this.emit('update-downloaded', {}, releaseNotes, version, date, this.updateURL, () => {
this.quitAndInstall() this.quitAndInstall()
}) })
@ -58,7 +55,7 @@ class AutoUpdater extends EventEmitter {
// Private: Emit both error object and message, this is to keep compatibility // Private: Emit both error object and message, this is to keep compatibility
// with Old APIs. // with Old APIs.
emitError (message) { emitError (message) {
return this.emit('error', new Error(message), message) this.emit('error', new Error(message), message)
} }
} }