Fix/fix version check (#278)

This commit is contained in:
Slava-Shchipunov
2026-05-12 23:31:43 +07:00
committed by GitHub
parent 617e9a93bc
commit 6089ef4c9b
5 changed files with 170 additions and 85 deletions

View File

@@ -0,0 +1,3 @@
export function removeVersionPrefix(version: string) {
return version.replace(/^v/, '');
}