From d6d8144bc3adfda2fa3df84ac89a20d4e034f145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Sun, 15 Jan 2017 02:24:08 +0100 Subject: [PATCH] Use let instead of var. --- usb/write-eeprom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usb/write-eeprom.js b/usb/write-eeprom.js index 19c6e6bd..442aaa92 100755 --- a/usb/write-eeprom.js +++ b/usb/write-eeprom.js @@ -1,6 +1,6 @@ #!/usr/bin/env node let uhk = require('./uhk'); -var arg = process.argv[2] || ''; +let arg = process.argv[2] || ''; if (arg.length === 0) { console.log('Gotta specify a string to be written to the EEPROM as the argument of this script');