Skip to content

Commit ed3223e

Browse files
committed
fix formatting error
1 parent 6e6c5ce commit ed3223e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

www/lib/semver.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export function extractVersion(input: string) {
1414
}
1515
}
1616

17-
1817
/**
1918
* Find the latest Semver tag from an array of tags
2019
* @param tags - Array of tag objects with name property
@@ -26,5 +25,3 @@ export function findLatestSemverTag<T extends { name: string }>(
2625
const [latest] = rsort(tags.map((tag) => tag.name).map(extractVersion));
2726
return tags.find((tag) => tag.name.endsWith(latest));
2827
}
29-
30-

0 commit comments

Comments
 (0)