Made browser specific code runnable in a non-browser environment.

This commit is contained in:
jtuu 2020-06-02 06:32:37 +03:00
parent 103de10b02
commit 03616bc890

View File

@ -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";
}