1
0
Fork 0

🔥 Removed unused variable

This commit is contained in:
Joost De Cock 2018-09-05 10:54:40 +02:00
parent f00bd716c7
commit d36e857e46

View file

@ -707,7 +707,6 @@ Path.prototype.split = function(point) {
Path.prototype.trim = function() {
let chunks = this.divide();
for (let i in chunks) {
let chunk = chunks[i];
let firstCandidate = parseInt(i) + 2;
let lastCandidate = parseInt(chunks.length) - 1;
for (let j = firstCandidate; j < lastCandidate; j++) {