(project: string)
| 138 | } |
| 139 | |
| 140 | export function projectToFilename(project: string): string { |
| 141 | return project.replace(/[/\\\s]+/g, '-').replace(/@/g, ''); |
| 142 | } |
| 143 | |
| 144 | type SplitFilePath = { |
| 145 | folders: string[]; |
no outgoing calls
no test coverage detected