diff options
Diffstat (limited to 'src/shell.js')
-rw-r--r-- | src/shell.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/shell.js b/src/shell.js index 7c365d6d..3461681e 100644 --- a/src/shell.js +++ b/src/shell.js @@ -1,12 +1,11 @@ -var that = this; // Capture the output of this into a variable, if you want (function(Module, args) { Module = Module || {}; - arguments = arguments || []; + args = args || []; {{BODY}} return Module; -}).apply(this, this.arguments); // Replace parameters as needed +})({}, this.arguments); // Replace parameters as needed |