(cell1: IBufferCell, cell2: IBufferCell)
| 167 | } |
| 168 | |
| 169 | function equalBg(cell1: IBufferCell, cell2: IBufferCell): boolean { |
| 170 | return cell1.getBgColorMode() === cell2.getBgColorMode() && cell1.getBgColor() === cell2.getBgColor() |
| 171 | } |
| 172 | |
| 173 | function equalFlags(cell1: IBufferCell, cell2: IBufferCell): boolean { |
| 174 | return ( |
no test coverage detected