(path: string, parent: string)
| 151 | } |
| 152 | |
| 153 | function isSameOrChildPath(path: string, parent: string): boolean { |
| 154 | return path === parent || path.startsWith(parent.endsWith(sep) ? parent : parent + sep); |
| 155 | } |
| 156 | |
| 157 | export function commonOutputDirectory(outputPaths: readonly string[]): string { |
| 158 | const firstPath = outputPaths[0]; |
no outgoing calls
no test coverage detected