(s: string)
| 37 | } |
| 38 | |
| 39 | function unescapeFromDiff(s: string): string { |
| 40 | return s.replaceAll(AMPERSAND_TOKEN, '&').replaceAll(DOLLAR_TOKEN, '$') |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Count lines added and removed in a patch and update the total |
nothing calls this directly
no outgoing calls
no test coverage detected