Skip to main content
Module

x/netzo/deno.d.ts>WebAssembly.compile

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
function WebAssembly.compile
import { WebAssembly } from "https://deno.land/x/netzo@v0.1.10/deno.d.ts";
const { compile } = WebAssembly;

The WebAssembly.compile() function compiles WebAssembly binary code into a WebAssembly.Module object. This function is useful if it is necessary to compile a module before it can be instantiated (otherwise, the WebAssembly.instantiate() function should be used).

MDN

Returns

Promise<Module>