(v: string | undefined)
| 7 | export const getLatestVersion = () => versions[0] |
| 8 | |
| 9 | export const isKnownVersion = (v: string | undefined): v is Version => |
| 10 | typeof v === "string" && versions.includes(v as Version) |
| 11 | |
| 12 | function isUnknownVersion(v?: string) { |
| 13 | return typeof v === "string" && !isKnownVersion(v) |
no outgoing calls
no test coverage detected
searching dependent graphs…