Skip to content

Commit

Permalink
Fix lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
papandreou committed Apr 21, 2022
1 parent 328043d commit aaec80e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/spriteBackgroundImages.js
Expand Up @@ -91,7 +91,7 @@ function maxPaddingDimensions(...paddings) {
const result = [0, 0, 0, 0];
for (const padding of paddings) {
if (padding) {
for (var i = 0; i < 4; i += 1) {
for (let i = 0; i < 4; i += 1) {
result[i] = Math.max(result[i], padding[i]);
}
}
Expand Down

0 comments on commit aaec80e

Please sign in to comment.