saito-wasm 0.2.138 → 0.2.140

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/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "saito-wasm"
3
- version = "0.2.138"
3
+ version = "0.2.140"
4
4
  edition = "2021"
5
5
 
6
6
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saito-wasm",
3
- "version": "0.2.138",
3
+ "version": "0.2.140",
4
4
  "description": "js wrappings around saito-core using wasm",
5
5
  "scripts": {
6
6
  "test": "./node_modules/.bin/jest",
@@ -29,6 +29,7 @@
29
29
  "file-loader": "6.2.0",
30
30
  "html-webpack-plugin": "5.5.0",
31
31
  "jest": "29.3.1",
32
+ "node-fetch": "3.3.0",
32
33
  "path-browserify": "1.0.1",
33
34
  "process": "0.11.10",
34
35
  "source-map-loader": "4.0.1",
@@ -36,14 +37,13 @@
36
37
  "ts-loader": "9.4.2",
37
38
  "ts-node-dev": "2.0.0",
38
39
  "typescript": "4.9.4",
39
- "webpack": "5.75.0",
40
+ "webpack": "5.101.3",
40
41
  "webpack-cli": "5.0.1",
41
- "webpack-dev-server": "4.11.1",
42
- "webpack-merge": "5.8.0",
43
- "node-fetch": "3.3.0"
42
+ "webpack-dev-server": "5.2.2",
43
+ "webpack-merge": "5.8.0"
44
44
  },
45
45
  "dependencies": {
46
- "node-fetch": "3.3.0",
47
- "cross-env": "7.0.3"
46
+ "cross-env": "7.0.3",
47
+ "node-fetch": "3.3.0"
48
48
  }
49
49
  }
package/pkg/node/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  let imports = {};
2
2
  imports['__wbindgen_placeholder__'] = module.exports;
3
3
  let wasm;
4
- const { MsgHandler } = require(String.raw`./snippets/saito-wasm-44e19b117a8d07d7/js/msg_handler.js`);
4
+ const { MsgHandler } = require(String.raw`./snippets/saito-wasm-0470af316986d1c1/js/msg_handler.js`);
5
5
  const { TextDecoder, TextEncoder } = require(`util`);
6
6
 
7
7
  const heap = new Array(128).fill(undefined);
@@ -225,31 +225,9 @@ function makeMutClosure(arg0, arg1, dtor, f) {
225
225
  return real;
226
226
  }
227
227
  function __wbg_adapter_38(arg0, arg1, arg2) {
228
- wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h437aeb043649771e(arg0, arg1, addHeapObject(arg2));
228
+ wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h98faef90f1d66b80(arg0, arg1, addHeapObject(arg2));
229
229
  }
230
230
 
231
- function handleError(f, args) {
232
- try {
233
- return f.apply(this, args);
234
- } catch (e) {
235
- wasm.__wbindgen_exn_store(addHeapObject(e));
236
- }
237
- }
238
-
239
- function _assertClass(instance, klass) {
240
- if (!(instance instanceof klass)) {
241
- throw new Error(`expected instance of ${klass.name}`);
242
- }
243
- return instance.ptr;
244
- }
245
-
246
- let stack_pointer = 128;
247
-
248
- function addBorrowedObject(obj) {
249
- if (stack_pointer == 1) throw new Error('out of js stack');
250
- heap[--stack_pointer] = obj;
251
- return stack_pointer;
252
- }
253
231
  /**
254
232
  * @param {string} config_json
255
233
  * @param {string} private_key
@@ -539,6 +517,12 @@ module.exports.get_balance_snapshot = function(keys) {
539
517
  return takeObject(ret);
540
518
  };
541
519
 
520
+ function _assertClass(instance, klass) {
521
+ if (!(instance instanceof klass)) {
522
+ throw new Error(`expected instance of ${klass.name}`);
523
+ }
524
+ return instance.ptr;
525
+ }
542
526
  /**
543
527
  * @param {WasmBalanceSnapshot} snapshot
544
528
  * @returns {Promise<void>}
@@ -722,8 +706,23 @@ module.exports.get_congestion_stats = function() {
722
706
  return takeObject(ret);
723
707
  };
724
708
 
709
+ function handleError(f, args) {
710
+ try {
711
+ return f.apply(this, args);
712
+ } catch (e) {
713
+ wasm.__wbindgen_exn_store(addHeapObject(e));
714
+ }
715
+ }
716
+
717
+ let stack_pointer = 128;
718
+
719
+ function addBorrowedObject(obj) {
720
+ if (stack_pointer == 1) throw new Error('out of js stack');
721
+ heap[--stack_pointer] = obj;
722
+ return stack_pointer;
723
+ }
725
724
  function __wbg_adapter_433(arg0, arg1, arg2, arg3) {
726
- wasm.wasm_bindgen__convert__closures__invoke2_mut__h6e7bb10b7401ce1b(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
725
+ wasm.wasm_bindgen__convert__closures__invoke2_mut__h0e9b83b2cf010e75(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
727
726
  }
728
727
 
729
728
  const SaitoWasmFinalization = (typeof FinalizationRegistry === 'undefined')
@@ -2630,6 +2629,11 @@ module.exports.__wbindgen_object_drop_ref = function(arg0) {
2630
2629
  takeObject(arg0);
2631
2630
  };
2632
2631
 
2632
+ module.exports.__wbg_wasmnft_new = function(arg0) {
2633
+ const ret = WasmNFT.__wrap(arg0);
2634
+ return addHeapObject(ret);
2635
+ };
2636
+
2633
2637
  module.exports.__wbindgen_string_new = function(arg0, arg1) {
2634
2638
  const ret = getStringFromWasm0(arg0, arg1);
2635
2639
  return addHeapObject(ret);
@@ -2640,8 +2644,8 @@ module.exports.__wbg_wasmtransaction_new = function(arg0) {
2640
2644
  return addHeapObject(ret);
2641
2645
  };
2642
2646
 
2643
- module.exports.__wbg_wasmpeer_new = function(arg0) {
2644
- const ret = WasmPeer.__wrap(arg0);
2647
+ module.exports.__wbindgen_bigint_from_u64 = function(arg0) {
2648
+ const ret = BigInt.asUintN(64, arg0);
2645
2649
  return addHeapObject(ret);
2646
2650
  };
2647
2651
 
@@ -2650,8 +2654,13 @@ module.exports.__wbg_wasmslip_new = function(arg0) {
2650
2654
  return addHeapObject(ret);
2651
2655
  };
2652
2656
 
2653
- module.exports.__wbg_wasmnft_new = function(arg0) {
2654
- const ret = WasmNFT.__wrap(arg0);
2657
+ module.exports.__wbg_wasmpeer_new = function(arg0) {
2658
+ const ret = WasmPeer.__wrap(arg0);
2659
+ return addHeapObject(ret);
2660
+ };
2661
+
2662
+ module.exports.__wbg_wasmblockchain_new = function(arg0) {
2663
+ const ret = WasmBlockchain.__wrap(arg0);
2655
2664
  return addHeapObject(ret);
2656
2665
  };
2657
2666
 
@@ -2660,18 +2669,27 @@ module.exports.__wbg_wasmwalletslip_new = function(arg0) {
2660
2669
  return addHeapObject(ret);
2661
2670
  };
2662
2671
 
2663
- module.exports.__wbindgen_bigint_from_u64 = function(arg0) {
2664
- const ret = BigInt.asUintN(64, arg0);
2672
+ module.exports.__wbg_wasmwallet_new = function(arg0) {
2673
+ const ret = WasmWallet.__wrap(arg0);
2665
2674
  return addHeapObject(ret);
2666
2675
  };
2667
2676
 
2677
+ module.exports.__wbindgen_string_get = function(arg0, arg1) {
2678
+ const obj = getObject(arg1);
2679
+ const ret = typeof(obj) === 'string' ? obj : undefined;
2680
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
2681
+ var len1 = WASM_VECTOR_LEN;
2682
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
2683
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
2684
+ };
2685
+
2668
2686
  module.exports.__wbindgen_object_clone_ref = function(arg0) {
2669
2687
  const ret = getObject(arg0);
2670
2688
  return addHeapObject(ret);
2671
2689
  };
2672
2690
 
2673
- module.exports.__wbg_wasmwallet_new = function(arg0) {
2674
- const ret = WasmWallet.__wrap(arg0);
2691
+ module.exports.__wbg_wasmbalancesnapshot_new = function(arg0) {
2692
+ const ret = WasmBalanceSnapshot.__wrap(arg0);
2675
2693
  return addHeapObject(ret);
2676
2694
  };
2677
2695
 
@@ -2680,34 +2698,46 @@ module.exports.__wbg_wasmblock_new = function(arg0) {
2680
2698
  return addHeapObject(ret);
2681
2699
  };
2682
2700
 
2683
- module.exports.__wbindgen_string_get = function(arg0, arg1) {
2684
- const obj = getObject(arg1);
2685
- const ret = typeof(obj) === 'string' ? obj : undefined;
2686
- var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
2687
- var len1 = WASM_VECTOR_LEN;
2688
- getInt32Memory0()[arg0 / 4 + 1] = len1;
2689
- getInt32Memory0()[arg0 / 4 + 0] = ptr1;
2701
+ module.exports.__wbindgen_error_new = function(arg0, arg1) {
2702
+ const ret = new Error(getStringFromWasm0(arg0, arg1));
2703
+ return addHeapObject(ret);
2690
2704
  };
2691
2705
 
2692
- module.exports.__wbg_wasmblockchain_new = function(arg0) {
2693
- const ret = WasmBlockchain.__wrap(arg0);
2706
+ module.exports.__wbindgen_is_object = function(arg0) {
2707
+ const val = getObject(arg0);
2708
+ const ret = typeof(val) === 'object' && val !== null;
2709
+ return ret;
2710
+ };
2711
+
2712
+ module.exports.__wbindgen_is_undefined = function(arg0) {
2713
+ const ret = getObject(arg0) === undefined;
2714
+ return ret;
2715
+ };
2716
+
2717
+ module.exports.__wbindgen_in = function(arg0, arg1) {
2718
+ const ret = getObject(arg0) in getObject(arg1);
2719
+ return ret;
2720
+ };
2721
+
2722
+ module.exports.__wbg_wasmhop_new = function(arg0) {
2723
+ const ret = WasmHop.__wrap(arg0);
2694
2724
  return addHeapObject(ret);
2695
2725
  };
2696
2726
 
2697
- module.exports.__wbg_wasmbalancesnapshot_new = function(arg0) {
2698
- const ret = WasmBalanceSnapshot.__wrap(arg0);
2727
+ module.exports.__wbg_wasmpeerservice_new = function(arg0) {
2728
+ const ret = WasmPeerService.__wrap(arg0);
2699
2729
  return addHeapObject(ret);
2700
2730
  };
2701
2731
 
2702
- module.exports.__wbg_sendmessage_e5c6ab6f9dcce0e3 = function(arg0, arg1) {
2732
+ module.exports.__wbg_sendmessage_7d73b9c3621e5eb6 = function(arg0, arg1) {
2703
2733
  MsgHandler.send_message(takeObject(arg0), getObject(arg1));
2704
2734
  };
2705
2735
 
2706
- module.exports.__wbg_sendmessagetoall_e3592dfacc47a9e5 = function(arg0, arg1) {
2736
+ module.exports.__wbg_sendmessagetoall_94e6eef0e3eab498 = function(arg0, arg1) {
2707
2737
  MsgHandler.send_message_to_all(getObject(arg0), getObject(arg1));
2708
2738
  };
2709
2739
 
2710
- module.exports.__wbg_connecttopeer_e287f8dae3f39768 = function() { return handleError(function (arg0, arg1, arg2) {
2740
+ module.exports.__wbg_connecttopeer_eb3f311ccf9f81f1 = function() { return handleError(function (arg0, arg1, arg2) {
2711
2741
  let deferred0_0;
2712
2742
  let deferred0_1;
2713
2743
  try {
@@ -2720,12 +2750,12 @@ module.exports.__wbg_connecttopeer_e287f8dae3f39768 = function() { return handle
2720
2750
  }
2721
2751
  }, arguments) };
2722
2752
 
2723
- module.exports.__wbg_disconnectfrompeer_f1e4ee6f8a2d961e = function() { return handleError(function (arg0) {
2753
+ module.exports.__wbg_disconnectfrompeer_65ebdcbf51503da2 = function() { return handleError(function (arg0) {
2724
2754
  const ret = MsgHandler.disconnect_from_peer(takeObject(arg0));
2725
2755
  return addHeapObject(ret);
2726
2756
  }, arguments) };
2727
2757
 
2728
- module.exports.__wbg_fetchblockfrompeer_8a6ec73c77cd2692 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
2758
+ module.exports.__wbg_fetchblockfrompeer_1c9ab072647785c5 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
2729
2759
  let deferred0_0;
2730
2760
  let deferred0_1;
2731
2761
  try {
@@ -2738,7 +2768,7 @@ module.exports.__wbg_fetchblockfrompeer_8a6ec73c77cd2692 = function() { return h
2738
2768
  }
2739
2769
  }, arguments) };
2740
2770
 
2741
- module.exports.__wbg_writevalue_23781fadc5d8eb4b = function(arg0, arg1, arg2) {
2771
+ module.exports.__wbg_writevalue_78ccd9ec0f8b49b4 = function(arg0, arg1, arg2) {
2742
2772
  let deferred0_0;
2743
2773
  let deferred0_1;
2744
2774
  try {
@@ -2750,7 +2780,7 @@ module.exports.__wbg_writevalue_23781fadc5d8eb4b = function(arg0, arg1, arg2) {
2750
2780
  }
2751
2781
  };
2752
2782
 
2753
- module.exports.__wbg_appendvalue_1964cfed84126c94 = function(arg0, arg1, arg2) {
2783
+ module.exports.__wbg_appendvalue_11efb7948d5e4c46 = function(arg0, arg1, arg2) {
2754
2784
  let deferred0_0;
2755
2785
  let deferred0_1;
2756
2786
  try {
@@ -2762,7 +2792,7 @@ module.exports.__wbg_appendvalue_1964cfed84126c94 = function(arg0, arg1, arg2) {
2762
2792
  }
2763
2793
  };
2764
2794
 
2765
- module.exports.__wbg_flushdata_b09fb366b79fcb56 = function(arg0, arg1) {
2795
+ module.exports.__wbg_flushdata_a863b803b316a972 = function(arg0, arg1) {
2766
2796
  let deferred0_0;
2767
2797
  let deferred0_1;
2768
2798
  try {
@@ -2774,7 +2804,7 @@ module.exports.__wbg_flushdata_b09fb366b79fcb56 = function(arg0, arg1) {
2774
2804
  }
2775
2805
  };
2776
2806
 
2777
- module.exports.__wbg_readvalue_4dd5494c5a1ccfdf = function() { return handleError(function (arg0, arg1) {
2807
+ module.exports.__wbg_readvalue_84cdf1b2aef82a0b = function() { return handleError(function (arg0, arg1) {
2778
2808
  let deferred0_0;
2779
2809
  let deferred0_1;
2780
2810
  try {
@@ -2787,12 +2817,12 @@ module.exports.__wbg_readvalue_4dd5494c5a1ccfdf = function() { return handleErro
2787
2817
  }
2788
2818
  }, arguments) };
2789
2819
 
2790
- module.exports.__wbg_loadblockfilelist_c3514b802ef12a77 = function() { return handleError(function () {
2820
+ module.exports.__wbg_loadblockfilelist_e35c582b76c98acf = function() { return handleError(function () {
2791
2821
  const ret = MsgHandler.load_block_file_list();
2792
2822
  return addHeapObject(ret);
2793
2823
  }, arguments) };
2794
2824
 
2795
- module.exports.__wbg_isexistingfile_0a7ef4ed894166e2 = function() { return handleError(function (arg0, arg1) {
2825
+ module.exports.__wbg_isexistingfile_4668f005ceff9d30 = function() { return handleError(function (arg0, arg1) {
2796
2826
  let deferred0_0;
2797
2827
  let deferred0_1;
2798
2828
  try {
@@ -2805,7 +2835,7 @@ module.exports.__wbg_isexistingfile_0a7ef4ed894166e2 = function() { return handl
2805
2835
  }
2806
2836
  }, arguments) };
2807
2837
 
2808
- module.exports.__wbg_removevalue_e6c4b263dc10a425 = function() { return handleError(function (arg0, arg1) {
2838
+ module.exports.__wbg_removevalue_12a866eab7e10156 = function() { return handleError(function (arg0, arg1) {
2809
2839
  let deferred0_0;
2810
2840
  let deferred0_1;
2811
2841
  try {
@@ -2818,7 +2848,7 @@ module.exports.__wbg_removevalue_e6c4b263dc10a425 = function() { return handleEr
2818
2848
  }
2819
2849
  }, arguments) };
2820
2850
 
2821
- module.exports.__wbg_ensureblockdirectoryexists_97abfa389fc131ab = function() { return handleError(function (arg0, arg1) {
2851
+ module.exports.__wbg_ensureblockdirectoryexists_07a7980b0e4aedcb = function() { return handleError(function (arg0, arg1) {
2822
2852
  let deferred0_0;
2823
2853
  let deferred0_1;
2824
2854
  try {
@@ -2830,19 +2860,19 @@ module.exports.__wbg_ensureblockdirectoryexists_97abfa389fc131ab = function() {
2830
2860
  }
2831
2861
  }, arguments) };
2832
2862
 
2833
- module.exports.__wbg_processapicall_f495277ecea3d124 = function(arg0, arg1, arg2) {
2863
+ module.exports.__wbg_processapicall_6bb6eb932380d3dd = function(arg0, arg1, arg2) {
2834
2864
  MsgHandler.process_api_call(takeObject(arg0), arg1 >>> 0, takeObject(arg2));
2835
2865
  };
2836
2866
 
2837
- module.exports.__wbg_processapisuccess_6bf5a017aba58f62 = function(arg0, arg1, arg2) {
2867
+ module.exports.__wbg_processapisuccess_b5c5b82486aa27eb = function(arg0, arg1, arg2) {
2838
2868
  MsgHandler.process_api_success(takeObject(arg0), arg1 >>> 0, takeObject(arg2));
2839
2869
  };
2840
2870
 
2841
- module.exports.__wbg_processapierror_6d2a099cb9a3e3aa = function(arg0, arg1, arg2) {
2871
+ module.exports.__wbg_processapierror_a8dcdc063f3ded06 = function(arg0, arg1, arg2) {
2842
2872
  MsgHandler.process_api_error(takeObject(arg0), arg1 >>> 0, takeObject(arg2));
2843
2873
  };
2844
2874
 
2845
- module.exports.__wbg_sendinterfaceevent_3b3c442c9cea5758 = function(arg0, arg1, arg2, arg3, arg4) {
2875
+ module.exports.__wbg_sendinterfaceevent_b2402bc36388a7a1 = function(arg0, arg1, arg2, arg3, arg4) {
2846
2876
  let deferred0_0;
2847
2877
  let deferred0_1;
2848
2878
  let deferred1_0;
@@ -2859,7 +2889,7 @@ module.exports.__wbg_sendinterfaceevent_3b3c442c9cea5758 = function(arg0, arg1,
2859
2889
  }
2860
2890
  };
2861
2891
 
2862
- module.exports.__wbg_sendblocksuccess_f2384fcbaa2ef81f = function(arg0, arg1, arg2) {
2892
+ module.exports.__wbg_sendblocksuccess_9bd890ea3c14855f = function(arg0, arg1, arg2) {
2863
2893
  let deferred0_0;
2864
2894
  let deferred0_1;
2865
2895
  try {
@@ -2871,11 +2901,11 @@ module.exports.__wbg_sendblocksuccess_f2384fcbaa2ef81f = function(arg0, arg1, ar
2871
2901
  }
2872
2902
  };
2873
2903
 
2874
- module.exports.__wbg_sendwalletupdate_535b97f1c7f4193f = function() {
2904
+ module.exports.__wbg_sendwalletupdate_ff6ad491d49a19f2 = function() {
2875
2905
  MsgHandler.send_wallet_update();
2876
2906
  };
2877
2907
 
2878
- module.exports.__wbg_sendnewversionalert_05f671d911936af4 = function(arg0, arg1, arg2) {
2908
+ module.exports.__wbg_sendnewversionalert_79ab2aff6c727219 = function(arg0, arg1, arg2) {
2879
2909
  let deferred0_0;
2880
2910
  let deferred0_1;
2881
2911
  try {
@@ -2887,60 +2917,29 @@ module.exports.__wbg_sendnewversionalert_05f671d911936af4 = function(arg0, arg1,
2887
2917
  }
2888
2918
  };
2889
2919
 
2890
- module.exports.__wbg_sendblockfetchstatusevent_85976fcdf0fd9234 = function(arg0) {
2920
+ module.exports.__wbg_sendblockfetchstatusevent_8f591d71d7a461f4 = function(arg0) {
2891
2921
  MsgHandler.send_block_fetch_status_event(BigInt.asUintN(64, arg0));
2892
2922
  };
2893
2923
 
2894
- module.exports.__wbg_sendnewchaindetectedevent_74aa26ff9285750a = function() {
2924
+ module.exports.__wbg_sendnewchaindetectedevent_adae1e02aa6cc887 = function() {
2895
2925
  MsgHandler.send_new_chain_detected_event();
2896
2926
  };
2897
2927
 
2898
- module.exports.__wbg_savewallet_54bc5bd93c4cbd82 = function() {
2928
+ module.exports.__wbg_savewallet_5a9a5db9c267e10f = function() {
2899
2929
  MsgHandler.save_wallet();
2900
2930
  };
2901
2931
 
2902
- module.exports.__wbg_loadwallet_efd1919997f3bf73 = function() {
2932
+ module.exports.__wbg_loadwallet_4da35505d7374077 = function() {
2903
2933
  MsgHandler.load_wallet();
2904
2934
  };
2905
2935
 
2906
- module.exports.__wbg_getmyservices_59f7a72183070c79 = function() {
2936
+ module.exports.__wbg_getmyservices_87a3cd04619a59a9 = function() {
2907
2937
  const ret = MsgHandler.get_my_services();
2908
2938
  _assertClass(ret, WasmPeerServiceList);
2909
2939
  var ptr1 = ret.__destroy_into_raw();
2910
2940
  return ptr1;
2911
2941
  };
2912
2942
 
2913
- module.exports.__wbindgen_error_new = function(arg0, arg1) {
2914
- const ret = new Error(getStringFromWasm0(arg0, arg1));
2915
- return addHeapObject(ret);
2916
- };
2917
-
2918
- module.exports.__wbg_wasmpeerservice_new = function(arg0) {
2919
- const ret = WasmPeerService.__wrap(arg0);
2920
- return addHeapObject(ret);
2921
- };
2922
-
2923
- module.exports.__wbg_wasmhop_new = function(arg0) {
2924
- const ret = WasmHop.__wrap(arg0);
2925
- return addHeapObject(ret);
2926
- };
2927
-
2928
- module.exports.__wbindgen_is_object = function(arg0) {
2929
- const val = getObject(arg0);
2930
- const ret = typeof(val) === 'object' && val !== null;
2931
- return ret;
2932
- };
2933
-
2934
- module.exports.__wbindgen_is_undefined = function(arg0) {
2935
- const ret = getObject(arg0) === undefined;
2936
- return ret;
2937
- };
2938
-
2939
- module.exports.__wbindgen_in = function(arg0, arg1) {
2940
- const ret = getObject(arg0) in getObject(arg1);
2941
- return ret;
2942
- };
2943
-
2944
2943
  module.exports.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
2945
2944
  const ret = getObject(arg0) == getObject(arg1);
2946
2945
  return ret;
@@ -3317,8 +3316,8 @@ module.exports.__wbindgen_memory = function() {
3317
3316
  return addHeapObject(ret);
3318
3317
  };
3319
3318
 
3320
- module.exports.__wbindgen_closure_wrapper1542 = function(arg0, arg1, arg2) {
3321
- const ret = makeMutClosure(arg0, arg1, 549, __wbg_adapter_38);
3319
+ module.exports.__wbindgen_closure_wrapper1552 = function(arg0, arg1, arg2) {
3320
+ const ret = makeMutClosure(arg0, arg1, 551, __wbg_adapter_38);
3322
3321
  return addHeapObject(ret);
3323
3322
  };
3324
3323
 
Binary file