diff options
Diffstat (limited to 'src/shell_sharedlib.js')
-rw-r--r-- | src/shell_sharedlib.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/shell_sharedlib.js b/src/shell_sharedlib.js new file mode 100644 index 00000000..d7af23fc --- /dev/null +++ b/src/shell_sharedlib.js @@ -0,0 +1,14 @@ +"use strict"; + +// Capture the output of this into a variable, if you want +(function() { + var Module = {}; + var args = []; + Module.arguments = []; + + {{BODY}} + + // {{MODULE_ADDITIONS}} + + return Module; +}); |