Y
Hacker News
new
|
ask
|
show
|
jobs
by
steveklabnik
3112 days ago
Maybe not, but I wouldn't be sure that that's it; the stated version on the top of the page is an important one, or at least is as long as IE 11 is a thing.
1 comments
DiThi
3112 days ago
Wouldn't it be better to just deploy asm.js alongside wasm? Emscripten can easily generate both, and a simple check can select which script to load.
if(window.WebAssembly != null){ loadScript('script.wasm.js'); }else{ loadScript('script.asm.js'); }
link
steveklabnik
3112 days ago
Quite possibly! Only one way to find out.
link