Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a8dc9dd

Browse files
committedApr 13, 2022
add fixes
1 parent 2c829c3 commit a8dc9dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/rules/order.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ function getSorter(ascending) {
260260
const a = A.length;
261261
const b = B.length;
262262

263-
for (let i = 0; i < Math.min(a,b); i++) {
263+
for (let i = 0; i < Math.min(a, b); i++) {
264264
if (A[i] < B[i]) {
265265
result = -1;
266266
break;

0 commit comments

Comments
 (0)
Please sign in to comment.