Skip to main content
Module

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

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

The WebAssembly.compileStreaming() function compiles a WebAssembly.Module directly from a streamed underlying source. This function is useful if it is necessary to a compile a module before it can be instantiated (otherwise, the WebAssembly.instantiateStreaming() function should be used).

MDN

Parameters

source: Response | Promise<Response>

Returns

Promise<Module>