(files: string[])
| 132 | * @returns Array of files that are not generated |
| 133 | */ |
| 134 | export function filterGeneratedFiles(files: string[]): string[] { |
| 135 | return files.filter(file => !isGeneratedFile(file)) |
| 136 | } |
| 137 |
nothing calls this directly
no test coverage detected