(line: string)
| 65 | } |
| 66 | |
| 67 | function removeInsElements(line: string): string { |
| 68 | return line.replace(/(<ins[^>]*>((.|\n)*?)<\/ins>)/g, ''); |
| 69 | } |
| 70 | |
| 71 | function removeDelElements(line: string): string { |
| 72 | return line.replace(/(<del[^>]*>((.|\n)*?)<\/del>)/g, ''); |
no outgoing calls
no test coverage detected
searching dependent graphs…