add global alias to globalThis
This commit is contained in:
parent
63376913de
commit
250647fd99
1 changed files with 2 additions and 1 deletions
3
qjs.c
3
qjs.c
|
@ -500,7 +500,8 @@ int main(int argc, char **argv)
|
|||
" const y = await import(x);" // use dynamic import.
|
||||
" return y;\n"
|
||||
"}\n"
|
||||
"globalThis.require = require;\n";
|
||||
"globalThis.require = require;\n
|
||||
globalThis.global = global;\n";
|
||||
eval_buf(ctx, reqPF, strlen(reqPF), "<input>", JS_EVAL_TYPE_MODULE);
|
||||
|
||||
for(i = 0; i < include_count; i++) {
|
||||
|
|
Loading…
Add table
Reference in a new issue