@woosh/meep-engine 2.80.0 → 2.81.0

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
@@ -86058,7 +86058,7 @@ function computeStatisticalPartialMedian(values, start, end) {
86058
86058
 
86059
86059
  const range = end - start;
86060
86060
 
86061
- const position = (start + range) >> 1;
86061
+ const position = start + (range >> 1);
86062
86062
 
86063
86063
  return copy[position];
86064
86064
  }