We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c829c3 commit a8dc9ddCopy full SHA for a8dc9dd
src/rules/order.js
@@ -260,7 +260,7 @@ function getSorter(ascending) {
260
const a = A.length;
261
const b = B.length;
262
263
- for (let i = 0; i < Math.min(a,b); i++) {
+ for (let i = 0; i < Math.min(a, b); i++) {
264
if (A[i] < B[i]) {
265
result = -1;
266
break;
0 commit comments