aboutsummaryrefslogtreecommitdiff
path: root/src/shell_sharedlib.js
blob: cbdac74b5a1dd296761d3b9461f2db2ae1a6c1c6 (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(FUNCTION_TABLE_OFFSET) {
  var Module = {};
  var args = [];
  Module.arguments = [];

  {{BODY}}

  // {{MODULE_ADDITIONS}}

  return Module;
});