auto-fix prefer-const

This commit is contained in:
Thomas Grainger 2017-05-02 23:06:28 +01:00
parent 5b03a84be8
commit 15aea9e9ea
No known key found for this signature in database
GPG key ID: 995EA0A029283160
5 changed files with 14 additions and 14 deletions

View file

@ -471,7 +471,7 @@ const StrUtils = {
number = args[1];
delimiter = Utils.charRep[delimiter];
let splitInput = input.split(delimiter);
const splitInput = input.split(delimiter);
return splitInput
.filter((line, lineIndex) => {
@ -499,7 +499,7 @@ const StrUtils = {
number = args[1];
delimiter = Utils.charRep[delimiter];
let splitInput = input.split(delimiter);
const splitInput = input.split(delimiter);
return splitInput
.filter((line, lineIndex) => {