(bufferOrView: BufferSource)
| 41 | * @return A WebAssemblyModule instance constructed from the binary data. |
| 42 | */ |
| 43 | export async function compile(bufferOrView: BufferSource): Promise<Module> { |
| 44 | return new Module( |
| 45 | ArrayBuffer.isView(bufferOrView) ? bufferOrView.buffer : bufferOrView |
| 46 | ); |
| 47 | } |
| 48 | |
| 49 | export async function compileStreaming( |
| 50 | source: Response | PromiseLike<Response> |
no outgoing calls
no test coverage detected