Skip to content

Commit 14c2b64

Browse files
ntolldpgeorge
authored andcommitted
webassembly: Replace typeof window check with ENVIRONMENT_IS_NODE flag.
When the "typeof window" check is run within a web worker the window is undefined, causing an error because "require" is only defined in a Node environment. Change the logic to reflect the true intentions of when this code should run, ie in Node only. Signed-off-by: Damien George <[email protected]>
1 parent 88771c1 commit 14c2b64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ports/webassembly/library.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
mergeInto(LibraryManager.library, {
2828
mp_js_write: function(ptr, len) {
2929
const buffer = HEAPU8.subarray(ptr, ptr + len)
30-
if (typeof window === 'undefined') {
30+
if (ENVIRONMENT_IS_NODE) {
3131
process.stdout.write(buffer);
3232
} else {
3333
const printEvent = new CustomEvent('micropython-print', { detail: buffer });
@@ -40,7 +40,7 @@ mergeInto(LibraryManager.library, {
4040
},
4141

4242
mp_js_hook: function() {
43-
if (typeof window === 'undefined') {
43+
if (ENVIRONMENT_IS_NODE) {
4444
var mp_interrupt_char = Module.ccall('mp_hal_get_interrupt_char', 'number', ['number'], ['null']);
4545
var fs = require('fs');
4646

0 commit comments

Comments
 (0)