blob: d7af23fca448cf5380467b8320b4333e81725904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
});
|