diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-05 11:40:18 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-05 11:40:18 -0700 |
commit | dbfb693b60d826a4833c42a96b94ad477198166f (patch) | |
tree | b97e2c6c44be3de764376306537b5c9984ae2cd0 /src/shell.js | |
parent | 57504362caf747c4a00fd08f5536a62f47a9a822 (diff) | |
parent | 12acd44d813051fa478284ea2a76cdafee0f01e5 (diff) |
Merge branch 'commonjs' of github.com:jazzzz/emscripten into incoming
Diffstat (limited to 'src/shell.js')
-rw-r--r-- | src/shell.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shell.js b/src/shell.js index 20db25a7..873bcc65 100644 --- a/src/shell.js +++ b/src/shell.js @@ -12,6 +12,10 @@ var ENVIRONMENT_IS_WEB = typeof window === 'object'; var ENVIRONMENT_IS_WORKER = typeof importScripts === 'function'; var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; +if (typeof module === "object") { + module.exports = Module; +} + if (ENVIRONMENT_IS_NODE) { // Expose functionality in the same simple way that the shells work // Note that we pollute the global namespace here, otherwise we break in node |