Relative path to wasm file #6

Merged
CrispyBaguette merged 1 commits from CrispyBaguette-patch-1 into master 2021-12-13 07:28:37 +00:00

View File

@ -1,6 +1,6 @@
class Ditherer { class Ditherer {
async dither(image: Uint8ClampedArray): Promise<Uint8ClampedArray> { async dither(image: Uint8ClampedArray): Promise<Uint8ClampedArray> {
const worker: any = await wasmWorker("/main.wasm"); const worker: any = await wasmWorker("./main.wasm");
let output: Uint8ClampedArray; let output: Uint8ClampedArray;
try { try {
output = await worker.dither(image); output = await worker.dither(image);