« get me outta code hell

tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/CommandLineInterfacer.js2
-rw-r--r--util/TelnetInterfacer.js4
-rw-r--r--util/count.js2
-rw-r--r--util/wrap.js2
4 files changed, 5 insertions, 5 deletions
diff --git a/util/CommandLineInterfacer.js b/util/CommandLineInterfacer.js
index 3f9d208..743ff5c 100644
--- a/util/CommandLineInterfacer.js
+++ b/util/CommandLineInterfacer.js
@@ -63,7 +63,7 @@ module.exports = class CommandLineInterfacer extends EventEmitter {
     const options = []
     let curOption = ''
     let commandCode = null
-    for (let val of buffer.slice(2)) {
+    for (const val of buffer.slice(2)) {
       if (48 <= val && val <= 57) { // 0124356789
         curOption = curOption.concat(val - 48)
       } else {
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)
diff --git a/util/count.js b/util/count.js
index 7df97a7..24c11b0 100644
--- a/util/count.js
+++ b/util/count.js
@@ -5,7 +5,7 @@ module.exports = function count(arr) {
 
   const map = new Map()
 
-  for (let item of arr) {
+  for (const item of arr) {
     if (map.has(item)) {
       map.set(item, map.get(item) + 1)
     } else {
diff --git a/util/wrap.js b/util/wrap.js
index 78e5233..3c381d4 100644
--- a/util/wrap.js
+++ b/util/wrap.js
@@ -7,7 +7,7 @@ module.exports = function wrap(str, width) {
 
   let curLine = words[0]
 
-  for (let word of words.slice(1)) {
+  for (const word of words.slice(1)) {
     if (curLine.length + word.length > width) {
       lines.push(curLine)
       curLine = word