Fix remove semi-colon guard

Users should be instructed to always use semi-colons
This commit is contained in:
Berkeley Martinez
2016-01-09 18:16:10 -08:00
parent d9abe3dddc
commit 019a28a5cc
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ window.common = (function(global) {
const originalCode = code;
const head = common.arrayToNewLineString(common.head);
const tail = common.arrayToNewLineString(common.tail);
const combinedCode = head + '\n;;' + code + '\n;;' + tail;
const combinedCode = head + code + tail;
ga('send', 'event', 'Challenge', 'ran-code', common.challengeName);