(
line: string,
isFirstOrLast: boolean,
{
aColor,
aIndicator,
changeLineTrailingSpaceColor,
emptyFirstOrLastLinePlaceholder,
}: DiffOptionsNormalized,
)
| 37 | ); |
| 38 | |
| 39 | const printDeleteLine = ( |
| 40 | line: string, |
| 41 | isFirstOrLast: boolean, |
| 42 | { |
| 43 | aColor, |
| 44 | aIndicator, |
| 45 | changeLineTrailingSpaceColor, |
| 46 | emptyFirstOrLastLinePlaceholder, |
| 47 | }: DiffOptionsNormalized, |
| 48 | ): string => |
| 49 | printDiffLine( |
| 50 | line, |
| 51 | isFirstOrLast, |
| 52 | aColor, |
| 53 | aIndicator, |
| 54 | changeLineTrailingSpaceColor, |
| 55 | emptyFirstOrLastLinePlaceholder, |
| 56 | ); |
| 57 | |
| 58 | const printInsertLine = ( |
| 59 | line: string, |
no test coverage detected