@woosh/meep-engine 2.117.19 → 2.117.21

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/README.md CHANGED
@@ -11,7 +11,7 @@ To help get you started, various samples are provided under `/samples` folder. F
11
11
 
12
12
  ## Documentation
13
13
 
14
- [Engine Documentation](http://meep-engine.company-named.com:8080/docs/api/)
14
+ [Engine Documentation](http://meep-engine.company-named.com:8080/docs/getting_started/Installation)
15
15
 
16
16
  ## Features
17
17
 
@@ -53,4 +53,4 @@ You're free to use it or not, the engine works just fine without it. The system
53
53
  For more information, please refer to the documentation
54
54
 
55
55
  ---
56
- Copyright © 2023 Company Named Limited, All Rights Reserved
56
+ Copyright © 2024 Company Named Limited, All Rights Reserved
package/build/meep.cjs CHANGED
@@ -60641,8 +60641,10 @@ class HashMap {
60641
60641
 
60642
60642
  if (new_index !== existing_entry_index) {
60643
60643
  // move entries to the new position, compacting holes
60644
+ const temp = entries[new_index];
60644
60645
 
60645
60646
  entries[new_index] = entries[existing_entry_index];
60647
+ entries[existing_entry_index] = temp;
60646
60648
  }
60647
60649
 
60648
60650
  let bin_index = this.compute_bin_index(hash);