(path: string)
| 18 | } |
| 19 | |
| 20 | export function isSplatFilePath(path: string): boolean { |
| 21 | return getSplatFileExtension(path) !== null; |
| 22 | } |
| 23 | |
| 24 | function getSplatCandidateRank(candidate: SplatCandidate): number { |
| 25 | const extension = getSplatFileExtension(candidate.path); |
no test coverage detected