From 03616bc890dcbb0c9ec92438a199437e7e22b411 Mon Sep 17 00:00:00 2001 From: jtuu Date: Tue, 2 Jun 2020 06:32:37 +0300 Subject: [PATCH] Made browser specific code runnable in a non-browser environment. --- src/core/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/util.ts b/src/core/util.ts index e631f826..aaed75d9 100644 --- a/src/core/util.ts +++ b/src/core/util.ts @@ -128,5 +128,5 @@ export function number_to_hex_string(num: number, min_len: number = 8): string { } export function browser_supports_webassembly(): boolean { - return typeof window.WebAssembly === "object"; + return typeof window === "object" && typeof window.WebAssembly === "object"; }