summaryrefslogtreecommitdiff
path: root/src/loadlib.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-12-10 01:01:43 +1100
committerdaurnimator <quae@daurnimator.com>2017-12-10 01:07:58 +1100
commit382bfe27205d5ade172fa088fcab0b2e123838e4 (patch)
tree394e24f93123e3efe75c8ef0d56007e8934e1c53 /src/loadlib.js
parent4d8bd2b823eddada773a84e4004c380cf7de8762 (diff)
downloadfengari-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/loadlib.js')
-rw-r--r--src/loadlib.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/loadlib.js b/src/loadlib.js
index dbd5c3c..ef39f4f 100644
--- a/src/loadlib.js
+++ b/src/loadlib.js
@@ -36,7 +36,7 @@ const AUXMARK = [1];
** error string in the stack.
*/
let lsys_load;
-if (WEB) {
+if (typeof process === "undefined") {
lsys_load = function(L, path, seeglb) {
path = lua.to_uristring(path);
let xhr = new XMLHttpRequest();
@@ -111,9 +111,7 @@ const noenv = function(L) {
};
let readable;
-// Only with Node
-if (!WEB) {
-
+if (typeof process !== "undefined") { // Only with Node
const fs = require('fs');
readable = function(filename) {
@@ -189,7 +187,7 @@ const ll_loadlib = function(L) {
};
let env;
-if (WEB) {
+if (typeof process === "undefined") {
env = window;
} else {
env = process.env;