From f2676294c95695e2de3a7fb88eafae76d6827618 Mon Sep 17 00:00:00 2001 From: Florrie Date: Thu, 31 May 2018 00:00:45 -0300 Subject: Let-const nitpicks --- util/TelnetInterfacer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util/TelnetInterfacer.js') diff --git a/util/TelnetInterfacer.js b/util/TelnetInterfacer.js index f9b1c23..410f8e9 100644 --- a/util/TelnetInterfacer.js +++ b/util/TelnetInterfacer.js @@ -54,7 +54,7 @@ module.exports = class TelnetInterfacer extends EventEmitter { inputLoop: while (true) { const data = await waitForData(this.socket) - for (let command of this.parseTelnetCommands(data)) { + for (const command of this.parseTelnetCommands(data)) { // WILL NAWS if (command[1] === 251 && command[2] === 31) { didWillNAWS = true @@ -87,7 +87,7 @@ module.exports = class TelnetInterfacer extends EventEmitter { const values = Array.from(buffer.values()) const commands = [] const curCmd = [255] - for (let value of values) { + for (const value of values) { if (value === 255) { // IAC commands.push(Array.from(curCmd)) curCmd.splice(1, curCmd.length) -- cgit 1.3.0-6-gf8a5