fix(image-pipeline): apply wasm/webgl lint hygiene cleanups

This commit is contained in:
Matthias
2026-04-04 23:06:43 +02:00
parent d10cb7ac8f
commit 86f487d0ef
3 changed files with 13 additions and 10 deletions

View File

@@ -25,8 +25,8 @@ function assertWasmSimdRuntimeSupport(): void {
throw new Error("WebAssembly SIMD is unavailable.");
}
const module = new WebAssembly.Module(WASM_SIMD_PROBE_MODULE);
void new WebAssembly.Instance(module);
const wasmModule = new WebAssembly.Module(WASM_SIMD_PROBE_MODULE);
void new WebAssembly.Instance(wasmModule);
}
export function loadWasmKernelModule(): WasmKernelModule {