aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/types/PathArray.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types/PathArray.js b/src/types/PathArray.js
index 10e7b07..8a37ac4 100644
--- a/src/types/PathArray.js
+++ b/src/types/PathArray.js
@@ -58,7 +58,7 @@ export default class PathArray extends SVGArray {
if (!isNaN(x) && !isNaN(y)) {
// move every point
- for (var l, i = this.length - 1; i >= 0; i--) {
+ for (let l, i = this.length - 1; i >= 0; i--) {
l = this[i][0]
if (l === 'M' || l === 'L' || l === 'T') {