@noir-lang/noir_wasm 1.0.0-beta.4-3fb324e.nightly → 1.0.0-beta.4-097b116.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.
Binary file
package/dist/node/main.js CHANGED
@@ -11423,6 +11423,22 @@ 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
+ };
11426
11442
 
11427
11443
  function _assertClass(instance, klass) {
11428
11444
  if (!(instance instanceof klass)) {
@@ -11471,23 +11487,6 @@ module.exports.compile_contract = function(entry_point, dependency_graph, file_s
11471
11487
  return takeFromExternrefTable0(ret[0]);
11472
11488
  };
11473
11489
 
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
-
11491
11490
  /**
11492
11491
  * This is a method that exposes the same API as `compile`
11493
11492
  * But uses the Context based APi internally