Function isWebAssemblySupported

  • Secure method to check if Web Assembly is supported. It does the following: Check whether WebAssembly is accessible in the current scope. See whether it has the '.instantiate' function. Try to synchronously compile the smallest possible module See if we get a WebAssembly.Module out of it. Finally, try to synchronously instantiate that module, and check that it's a WebAssembly.Instance. More info on: https://stackoverflow.com/questions/47879864/how-can-i-check-if-a-browser-supports-webassembly.

    Returns boolean

    true if WASM is supported, false otherwise.

Generated using TypeDoc