Fix most lint issues

This commit is contained in:
Berkeley Martinez
2015-11-04 12:37:25 -08:00
parent f7c8932f8e
commit 8f3c3e3972
3 changed files with 303 additions and 34 deletions

View File

@@ -23,7 +23,7 @@ function run(code) {
var codeExec = runHidden(code);
result.type = typeof codeExec;
result.output = stringify(codeExec);
} catch(e) {
} catch (e) {
result.error = e.message;
}