@noir-lang/noir_wasm 1.0.0-beta.15-89c2b2d.nightly → 1.0.0-beta.15-1b1985e.nightly
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node/index_bg.wasm +0 -0
- package/dist/node/main.js +17 -16
- package/dist/node/main.js.map +1 -1
- package/dist/types/build/cjs/index.d.ts +2 -2
- package/dist/types/build/esm/index.d.ts +8 -8
- package/dist/web/main.mjs +8760 -8795
- package/dist/web/main.mjs.map +1 -1
- package/package.json +2 -2
- package/dist/types/dist/node/main.d.ts +0 -957
package/dist/node/index_bg.wasm
CHANGED
|
Binary file
|
package/dist/node/main.js
CHANGED
|
@@ -11423,22 +11423,6 @@ function debugString(val) {
|
|
|
11423
11423
|
function isLikeNone(x) {
|
|
11424
11424
|
return x === undefined || x === null;
|
|
11425
11425
|
}
|
|
11426
|
-
/**
|
|
11427
|
-
* @param {string} level
|
|
11428
|
-
*/
|
|
11429
|
-
module.exports.init_log_level = function(level) {
|
|
11430
|
-
const ptr0 = passStringToWasm0(level, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
11431
|
-
const len0 = WASM_VECTOR_LEN;
|
|
11432
|
-
wasm.init_log_level(ptr0, len0);
|
|
11433
|
-
};
|
|
11434
|
-
|
|
11435
|
-
/**
|
|
11436
|
-
* @returns {any}
|
|
11437
|
-
*/
|
|
11438
|
-
module.exports.build_info = function() {
|
|
11439
|
-
const ret = wasm.build_info();
|
|
11440
|
-
return ret;
|
|
11441
|
-
};
|
|
11442
11426
|
|
|
11443
11427
|
function _assertClass(instance, klass) {
|
|
11444
11428
|
if (!(instance instanceof klass)) {
|
|
@@ -11487,6 +11471,23 @@ module.exports.compile_contract = function(entry_point, dependency_graph, file_s
|
|
|
11487
11471
|
return takeFromExternrefTable0(ret[0]);
|
|
11488
11472
|
};
|
|
11489
11473
|
|
|
11474
|
+
/**
|
|
11475
|
+
* @param {string} level
|
|
11476
|
+
*/
|
|
11477
|
+
module.exports.init_log_level = function(level) {
|
|
11478
|
+
const ptr0 = passStringToWasm0(level, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
11479
|
+
const len0 = WASM_VECTOR_LEN;
|
|
11480
|
+
wasm.init_log_level(ptr0, len0);
|
|
11481
|
+
};
|
|
11482
|
+
|
|
11483
|
+
/**
|
|
11484
|
+
* @returns {any}
|
|
11485
|
+
*/
|
|
11486
|
+
module.exports.build_info = function() {
|
|
11487
|
+
const ret = wasm.build_info();
|
|
11488
|
+
return ret;
|
|
11489
|
+
};
|
|
11490
|
+
|
|
11490
11491
|
/**
|
|
11491
11492
|
* This is a method that exposes the same API as `compile`
|
|
11492
11493
|
* But uses the Context based APi internally
|