Skip to content

Commit

Permalink
chore: dedicated string vs number var usage;
Browse files Browse the repository at this point in the history
- related: #23
  • Loading branch information
lukeed committed Dec 29, 2023
1 parent deff09b commit 554ad31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ function toVal(mix) {
}
}
} else {
for (k in mix) {
if (mix[k]) {
for (y in mix) {
if (mix[y]) {
str && (str += ' ');
str += k;
str += y;
}
}
}
Expand Down

0 comments on commit 554ad31

Please sign in to comment.