@noir-lang/noir_wasm 0.24.0-722dc96.nightly → 0.24.0-b5e5c30.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
@@ -18,12 +18,6 @@ heap.push(undefined, null, true, false);
18
18
 
19
19
  function getObject(idx) { return heap[idx]; }
20
20
 
21
- function _assertBoolean(n) {
22
- if (typeof(n) !== 'boolean') {
23
- throw new Error('expected a boolean argument');
24
- }
25
- }
26
-
27
21
  let heap_next = heap.length;
28
22
 
29
23
  function dropObject(idx) {
@@ -38,6 +32,12 @@ function takeObject(idx) {
38
32
  return ret;
39
33
  }
40
34
 
35
+ function _assertBoolean(n) {
36
+ if (typeof(n) !== 'boolean') {
37
+ throw new Error('expected a boolean argument');
38
+ }
39
+ }
40
+
41
41
  let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
42
42
 
43
43
  cachedTextDecoder.decode();
@@ -535,12 +535,6 @@ class PathToFileSourceMap {
535
535
  }
536
536
  module.exports.PathToFileSourceMap = PathToFileSourceMap;
537
537
 
538
- module.exports.__wbindgen_is_undefined = function(arg0) {
539
- const ret = getObject(arg0) === undefined;
540
- _assertBoolean(ret);
541
- return ret;
542
- };
543
-
544
538
  module.exports.__wbindgen_object_drop_ref = function(arg0) {
545
539
  takeObject(arg0);
546
540
  };
@@ -555,6 +549,12 @@ module.exports.__wbg_constructor_e8767839abf8a966 = function() { return logError
555
549
  return addHeapObject(ret);
556
550
  }, arguments) };
557
551
 
552
+ module.exports.__wbindgen_is_undefined = function(arg0) {
553
+ const ret = getObject(arg0) === undefined;
554
+ _assertBoolean(ret);
555
+ return ret;
556
+ };
557
+
558
558
  module.exports.__wbg_new_abda76e883ba8a5f = function() { return logError(function () {
559
559
  const ret = new Error();
560
560
  return addHeapObject(ret);