Skip to content

Commit 6858c53

Browse files
committed
fix: versionSorter v4.1 (lol)
1 parent b7f6e03 commit 6858c53

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/helpers/versionSorter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function versionSorter(a: string, b: string) {
77
const aStrings = a.split(".");
88
const aNumbers = aStrings.map((aPart) => Number(aPart));
99
const bStrings = b.split(".");
10-
const bNumbers = aStrings.map((bPart) => Number(bPart));
10+
const bNumbers = bStrings.map((bPart) => Number(bPart));
1111

1212
// non-numbered versions go above everything else
1313
if (

0 commit comments

Comments
 (0)