diff options
author | David LaPalomento <dlapalomento@gmail.com> | 2010-12-09 22:43:31 -0800 |
---|---|---|
committer | David LaPalomento <dlapalomento@gmail.com> | 2010-12-09 22:43:31 -0800 |
commit | 74338a84911ecab007cb929cc417f59bfbac600a (patch) | |
tree | 7808b9582c73d015bea0eb60e474b84277e827f5 /src/compiler.js | |
parent | 660398be701fa73c13d2828379404018d4292e0e (diff) |
code cleanup of |,;|s
Diffstat (limited to 'src/compiler.js')
-rw-r--r-- | src/compiler.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler.js b/src/compiler.js index 395c7acd..3a21de33 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -2,10 +2,10 @@ // Prep - allow this to run in both SpiderMonkey and V8 if (!this['load']) { - load = function(f) { eval(snarf(f)) } + load = function(f) { eval(snarf(f)) }; } if (!this['read']) { - read = function(f) { snarf(f) } + read = function(f) { snarf(f) }; } load('settings.js'); |