( changedFiles: ChangedFiles, file: string, )
| 140 | } |
| 141 | |
| 142 | export function adjustFileName( |
| 143 | changedFiles: ChangedFiles, |
| 144 | file: string, |
| 145 | ): string { |
| 146 | return ( |
| 147 | Object.entries(changedFiles).find( |
| 148 | ([, { originalFile }]) => originalFile === file, |
| 149 | )?.[0] ?? file |
| 150 | ); |
| 151 | } |
| 152 | |
| 153 | export function adjustLine( |
| 154 | changedFiles: ChangedFiles, |
no outgoing calls
no test coverage detected