Skip to content

Commit

Permalink
Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
na9da committed Apr 26, 2024
1 parent 75c1b08 commit b066468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Core/containsAny.ts
Expand Up @@ -12,7 +12,7 @@ const containsAny = function (s: string, possibleStrings: string[]) {
return false;
}

for (var i = 0; i < possibleStrings.length; ++i) {
for (let i = 0; i < possibleStrings.length; ++i) {
if (s.indexOf(possibleStrings[i]) >= 0) {
return true;
}
Expand Down

0 comments on commit b066468

Please sign in to comment.