Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e45eb2 commit d5f6385Copy full SHA for d5f6385
wasm/main.ts
@@ -22,10 +22,11 @@ function checkCompat(prop: string) {
22
if (prop in window) {
23
return; // OK
24
}
25
- fatal(`window.${prop} is not supported by this browser`);
+ fatal(
26
+ `window.${prop} is not supported by this browser. If you're on Firefox or Safari, please enable browser's feature flag`,
27
+ );
28
29
-checkCompat('Worker');
30
checkCompat('Atomics');
31
checkCompat('SharedArrayBuffer');
32
0 commit comments