(path: string, key: string, suffix: string)
| 1139 | } |
| 1140 | |
| 1141 | function equalWithoutSuffix(path: string, key: string, suffix: string) { |
| 1142 | return key.endsWith(suffix) && key.slice(0, -suffix.length) === path |
| 1143 | } |
| 1144 | |
| 1145 | function tryResolveRealFile( |
| 1146 | file: string, |
no outgoing calls
no test coverage detected