@galacean/engine-core 0.0.0-experimental-renderSort.3 → 0.0.0-experimental-renderSort.4

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.
@@ -21867,7 +21867,7 @@ var passNum = 0;
21867
21867
  */ _proto._quickSort = function _quickSort(a, from, to, compareFunc) {
21868
21868
  while(true){
21869
21869
  // Insertion sort is faster for short arrays.
21870
- if (to - from <= 10000000) {
21870
+ if (to - from <= 10) {
21871
21871
  this._insertionSort(a, from, to, compareFunc);
21872
21872
  return;
21873
21873
  }
package/dist/module.js CHANGED
@@ -21862,7 +21862,7 @@ var passNum = 0;
21862
21862
  */ _proto._quickSort = function _quickSort(a, from, to, compareFunc) {
21863
21863
  while(true){
21864
21864
  // Insertion sort is faster for short arrays.
21865
- if (to - from <= 10000000) {
21865
+ if (to - from <= 10) {
21866
21866
  this._insertionSort(a, from, to, compareFunc);
21867
21867
  return;
21868
21868
  }