(value: string)
| 50 | } |
| 51 | |
| 52 | const parsePathToken = (value: string) => { |
| 53 | if (!value.startsWith('"')) return value.split("\t")[0] |
| 54 | return parseQuotedPath(value)?.value ?? value |
| 55 | } |
| 56 | |
| 57 | const fileFromDiffPath = (value: string | undefined) => { |
| 58 | if (!value || value === "/dev/null") return |
no test coverage detected