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

@@ -35,7 +35,7 @@ $(document).ready(function() {
.flatMap(code => {
return common.detectUnsafeCode$(code)
.map(() => {
const combinedCode = common.head + '\n;;' + code + '\n;;' + common.tail;
const combinedCode = common.head + code + common.tail;
return addLoopProtect(combinedCode);
})