(
line: string,
isFirstOrLast: boolean,
{
bColor,
bIndicator,
changeLineTrailingSpaceColor,
emptyFirstOrLastLinePlaceholder,
}: DiffOptionsNormalized,
)
| 56 | ); |
| 57 | |
| 58 | const printInsertLine = ( |
| 59 | line: string, |
| 60 | isFirstOrLast: boolean, |
| 61 | { |
| 62 | bColor, |
| 63 | bIndicator, |
| 64 | changeLineTrailingSpaceColor, |
| 65 | emptyFirstOrLastLinePlaceholder, |
| 66 | }: DiffOptionsNormalized, |
| 67 | ): string => |
| 68 | printDiffLine( |
| 69 | line, |
| 70 | isFirstOrLast, |
| 71 | bColor, |
| 72 | bIndicator, |
| 73 | changeLineTrailingSpaceColor, |
| 74 | emptyFirstOrLastLinePlaceholder, |
| 75 | ); |
| 76 | |
| 77 | const printCommonLine = ( |
| 78 | line: string, |
no test coverage detected