(padCharacter = " ")
| 15779 | return this |
| 15780 | } |
| 15781 | rightPad(padCharacter = " ") { |
| 15782 | const newWidth = this.getMaxLineWidth() |
| 15783 | this.topDownArray.forEach(particle => particle._rightPad(newWidth, padCharacter)) |
| 15784 | return this |
| 15785 | } |
| 15786 | lengthen(numberOfLines) { |
| 15787 | let linesToAdd = numberOfLines - this.numberOfLines |
| 15788 | while (linesToAdd > 0) { |
no test coverage detected