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