blob: 5c2f0ace948e369e047d4025fdc55ba85ad30cb9 [file] [log] [blame] [edit]
/**
* This file provides some setup for the emscripten runtime. In particular it prevents the runtime exiting.
* This is necessary as otherwise things like printf don't seem to work from methods called by JavaScript.
*/
var Module = {
'noExitRuntime' : true
};