Skip to content

Commit

Permalink
package-lock
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuzzyma committed Jun 25, 2021
1 parent ac2c85d commit 33e755b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/types/PathArray.js
Original file line number Diff line number Diff line change
Expand Up @@ -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') {
Expand Down

0 comments on commit 33e755b

Please sign in to comment.