(buildmetadata: string)
| 184 | } |
| 185 | |
| 186 | export function parseBuild(buildmetadata: string) { |
| 187 | return buildmetadata.split(".").filter(Boolean); |
| 188 | } |
| 189 | |
| 190 | export function parseNumber(input: string, errorMessage: string) { |
| 191 | const number = Number(input); |
no outgoing calls
no test coverage detected