(string)
| 32 | |
| 33 | /** Given a version string, is it alphanumeric? */ |
| 34 | export function isAlphaNumericVersion(string) { |
| 35 | return /[a-z].(\d+)$/.test(string) |
| 36 | } |
| 37 | |
| 38 | /** Given a string, convert it to camelCase */ |
| 39 | export function toCamelCase(str) { |
no outgoing calls
no test coverage detected