We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e6c5ce commit ed3223eCopy full SHA for ed3223e
www/lib/semver.ts
@@ -14,7 +14,6 @@ export function extractVersion(input: string) {
14
}
15
16
17
-
18
/**
19
* Find the latest Semver tag from an array of tags
20
* @param tags - Array of tag objects with name property
@@ -26,5 +25,3 @@ export function findLatestSemverTag<T extends { name: string }>(
26
25
const [latest] = rsort(tags.map((tag) => tag.name).map(extractVersion));
27
return tags.find((tag) => tag.name.endsWith(latest));
28
29
30
0 commit comments