From 2d6bbeb6430c007547403102c4336c444652a10e Mon Sep 17 00:00:00 2001 From: benedikt willi Date: Wed, 26 Mar 2014 16:01:45 +0100 Subject: [PATCH] Added missing semicolon --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index b0cd06f..bddb2b1 100644 --- a/main.js +++ b/main.js @@ -95,7 +95,7 @@ define(function (require, exports, module) { txtFrom = txtFrom.substr(0, txtFrom.indexOf("{")); //take any comment off - txtFrom = txtFrom.replace(new RegExp(REGEX_PATTERNS.comment,'g'), '') + txtFrom = txtFrom.replace(new RegExp(REGEX_PATTERNS.comment,'g'), ''); var results = txtFrom.match(new RegExp(REGEX_PATTERNS.jsVariable,'g')); switch(true) {