(value: string)
| 44 | } |
| 45 | |
| 46 | function slugifyStarterName(value: string) { |
| 47 | return value |
| 48 | .trim() |
| 49 | .toLowerCase() |
| 50 | .replace(/[^a-z0-9]+/g, '-') |
| 51 | .replace(/^-+|-+$/g, '') |
| 52 | } |
| 53 | |
| 54 | function humanizeStarterId(value: string) { |
| 55 | return value |
no test coverage detected