* Sanitizes a name for use in file paths
(name: string)
| 715 | * Sanitizes a name for use in file paths |
| 716 | */ |
| 717 | function sanitizeName(name: string): string { |
| 718 | return name.replace(/[^a-zA-Z0-9]/g, '-').toLowerCase() |
| 719 | } |
| 720 | |
| 721 | /** |
| 722 | * Reads team members from the team file |
no outgoing calls
no test coverage detected