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