From 9db2d16dba456c4ccbdc57bec469e4e16b89173f Mon Sep 17 00:00:00 2001
From: YourFriendlyNeighborhoodDealer <qminer@2girls1dj.com>
Date: Sat, 23 Mar 2019 09:15:39 +0100
Subject: [PATCH] Tiny string utils fix

---
 main.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.js b/main.js
index 419cb4f..a6a31e8 100644
--- a/main.js
+++ b/main.js
@@ -65,7 +65,7 @@ class StringUtils {
 		assert(val);
 		assert(char);
 
-		toremove = this.NormalizeSpaces(val);
+		var toremove = this.NormalizeSpaces(val);
 
 		var regex = new RegExp(char, "g");
 		toremove.replace(regex, " ");