We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec65208 commit 9af7510Copy full SHA for 9af7510
src/wasm/rulesengine.js
@@ -196,7 +196,6 @@ let wasm;
196
197
exports.initWasm = async function() {
198
if (wasm) return;
199
- console.log('Initializing WebAssembly module...');
200
const wasmBase64 = require('./rulesengine_bg_wasm_base64.js');
201
const wasmBytes = Uint8Array.from(atob(wasmBase64), c => c.charCodeAt(0));
202
const wasmModule = await WebAssembly.compile(wasmBytes);
0 commit comments