Prefer const over let

This commit is contained in:
Linus Unnebäck
2018-10-10 21:21:29 +02:00
parent fa7d917d0d
commit ffb809bbca
8 changed files with 11 additions and 11 deletions

View File

@@ -35,7 +35,7 @@ files.forEach(function (file) {
} }
if (error) { if (error) {
let name = path.basename(file) const name = path.basename(file)
console.log('%s:%d - %s:\n%s', name, i + 1, error, line) console.log('%s:%d - %s:\n%s', name, i + 1, error, line)
hasErrors = true hasErrors = true
} }

View File

@@ -192,7 +192,7 @@ function sliceArgv (argv) {
} }
function processArgv (argv) { function processArgv (argv) {
let torrentIds = [] const torrentIds = []
argv.forEach(function (arg) { argv.forEach(function (arg) {
if (arg === '-n' || arg === '-o' || arg === '-u') { if (arg === '-n' || arg === '-o' || arg === '-u') {
// Critical path: Only load the 'dialog' package if it is needed // Critical path: Only load the 'dialog' package if it is needed

View File

@@ -318,7 +318,7 @@ module.exports = class TorrentListController {
function findFilesRecursive (paths, cb_) { function findFilesRecursive (paths, cb_) {
if (paths.length > 1) { if (paths.length > 1) {
let numComplete = 0 let numComplete = 0
let ret = [] const ret = []
paths.forEach(function (path) { paths.forEach(function (path) {
findFilesRecursive([path], function (fileObjs) { findFilesRecursive([path], function (fileObjs) {
ret.push(...fileObjs) ret.push(...fileObjs)

View File

@@ -236,7 +236,7 @@ function saveImmediate (state, cb) {
.filter((x) => x.infoHash) .filter((x) => x.infoHash)
.map(function (x) { .map(function (x) {
const torrent = {} const torrent = {}
for (let key in x) { for (const key in x) {
if (key === 'progress' || key === 'torrentKey') { if (key === 'progress' || key === 'torrentKey') {
continue // Don't save progress info or key for the webtorrent process continue // Don't save progress info or key for the webtorrent process
} }

View File

@@ -98,7 +98,7 @@ function getSystemInfo () {
function getTorrentStats (state) { function getTorrentStats (state) {
const count = state.saved.torrents.length const count = state.saved.torrents.length
let sizeMB = 0 let sizeMB = 0
let byStatus = { const byStatus = {
new: { count: 0, sizeMB: 0 }, new: { count: 0, sizeMB: 0 },
downloading: { count: 0, sizeMB: 0 }, downloading: { count: 0, sizeMB: 0 },
seeding: { count: 0, sizeMB: 0 }, seeding: { count: 0, sizeMB: 0 },

View File

@@ -98,7 +98,7 @@ function scoreAudioCoverFile (imgFile) {
spectrogram: -80 spectrogram: -80
} }
for (let keyword in relevanceScore) { for (const keyword in relevanceScore) {
if (fileName === keyword) { if (fileName === keyword) {
return relevanceScore[keyword] return relevanceScore[keyword]
} }

View File

@@ -5,7 +5,7 @@
* actually used because auto-prefixing is disabled with * actually used because auto-prefixing is disabled with
* `darkBaseTheme.userAgent = false`. Return a fake object. * `darkBaseTheme.userAgent = false`. Return a fake object.
*/ */
let Module = require('module') const Module = require('module')
const _require = Module.prototype.require const _require = Module.prototype.require
Module.prototype.require = function (id) { Module.prototype.require = function (id) {
if (id === 'inline-style-prefixer') return {} if (id === 'inline-style-prefixer') return {}

View File

@@ -734,14 +734,14 @@ function formatTime (time, total) {
return '0:00' return '0:00'
} }
let totalHours = Math.floor(total / 3600) const totalHours = Math.floor(total / 3600)
let totalMinutes = Math.floor(total % 3600 / 60) const totalMinutes = Math.floor(total % 3600 / 60)
let hours = Math.floor(time / 3600) const hours = Math.floor(time / 3600)
let minutes = Math.floor(time % 3600 / 60) let minutes = Math.floor(time % 3600 / 60)
if (totalMinutes > 9) { if (totalMinutes > 9) {
minutes = zeroFill(2, minutes) minutes = zeroFill(2, minutes)
} }
let seconds = zeroFill(2, Math.floor(time % 60)) const seconds = zeroFill(2, Math.floor(time % 60))
return (totalHours > 0 ? hours + ':' : '') + minutes + ':' + seconds return (totalHours > 0 ? hours + ':' : '') + minutes + ':' + seconds
} }