(value: string)
| 52 | } |
| 53 | |
| 54 | function humanizeStarterId(value: string) { |
| 55 | return value |
| 56 | .split(/[-_]/g) |
| 57 | .filter(Boolean) |
| 58 | .map((part) => part[0].toUpperCase() + part.slice(1)) |
| 59 | .join(' ') |
| 60 | } |
| 61 | |
| 62 | function isLikelyStarterUrlOrPath(value: string) { |
| 63 | return ( |
no outgoing calls
no test coverage detected