Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/xdg/vendor/types/deno.d.ts>WebAssembly.compileStreaming

Determine XDG Base Directory paths (OS/platform portable)
Latest
function WebAssembly.compileStreaming
import { WebAssembly } from "https://deno.land/x/xdg@v10.6.0/vendor/types/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>