mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Made browser specific code runnable in a non-browser environment.
This commit is contained in:
parent
103de10b02
commit
03616bc890
@ -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";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user