(filePath: string, oldContent: string, newContent: string)
| 59 | * @returns Unified diff string |
| 60 | */ |
| 61 | export function generateDiff(filePath: string, oldContent: string, newContent: string): string { |
| 62 | return createPatch(filePath, oldContent, newContent, "", "", { context: 3 }); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Check if a file path is the configured plan file (any mode). |
no outgoing calls
no test coverage detected