@woosh/meep-engine 2.117.19 → 2.117.20

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/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);