Skip to content

Commit 9af7510

Browse files
committed
remove console.log
1 parent ec65208 commit 9af7510

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/wasm/rulesengine.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ let wasm;
196196

197197
exports.initWasm = async function() {
198198
if (wasm) return;
199-
console.log('Initializing WebAssembly module...');
200199
const wasmBase64 = require('./rulesengine_bg_wasm_base64.js');
201200
const wasmBytes = Uint8Array.from(atob(wasmBase64), c => c.charCodeAt(0));
202201
const wasmModule = await WebAssembly.compile(wasmBytes);

0 commit comments

Comments
 (0)