(teamName: string)
| 113 | * Gets the path to a team's directory |
| 114 | */ |
| 115 | export function getTeamDir(teamName: string): string { |
| 116 | return join(getTeamsDir(), sanitizeName(teamName)) |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Gets the path to a team's config.json file |
no test coverage detected