From d36e857e46adf4603703e13e190cd87f234c8b30 Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Wed, 5 Sep 2018 10:54:40 +0200 Subject: [PATCH] :fire: Removed unused variable --- src/path.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/path.js b/src/path.js index 3c4c9cfd752..bb53dd83176 100644 --- a/src/path.js +++ b/src/path.js @@ -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++) {