diff options
author | daurnimator <quae@daurnimator.com> | 2017-12-10 01:01:43 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-12-10 01:07:58 +1100 |
commit | 382bfe27205d5ade172fa088fcab0b2e123838e4 (patch) | |
tree | 394e24f93123e3efe75c8ef0d56007e8934e1c53 /src/linit.js | |
parent | 4d8bd2b823eddada773a84e4004c380cf7de8762 (diff) | |
download | fengari-382bfe27205d5ade172fa088fcab0b2e123838e4.tar.gz fengari-382bfe27205d5ade172fa088fcab0b2e123838e4.tar.bz2 fengari-382bfe27205d5ade172fa088fcab0b2e123838e4.zip |
Use `typeof process === "undefined"` instead of WEB global
This removes requirement to set global.WEB before requiring in node
Diffstat (limited to 'src/linit.js')
-rw-r--r-- | src/linit.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linit.js b/src/linit.js index 90ad978..97cbfc9 100644 --- a/src/linit.js +++ b/src/linit.js @@ -26,7 +26,7 @@ const luaL_openlibs = function(L) { "_G": lbaselib.luaopen_base }; - if (!WEB) loadedlibs[lualib.LUA_IOLIBNAME] = require('./liolib.js').luaopen_io; + if (typeof process !== "undefined") loadedlibs[lualib.LUA_IOLIBNAME] = require('./liolib.js').luaopen_io; /* "require" functions from 'loadedlibs' and set results to global table */ for (let lib in loadedlibs) { |