(computedLines)
| 92 | } |
| 93 | |
| 94 | wrapLines(computedLines) { |
| 95 | const lines = utils.colorizeLines(computedLines); |
| 96 | if (this.href) { |
| 97 | return lines.map((line) => utils.hyperlink(this.href, line)); |
| 98 | } |
| 99 | return lines; |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Initializes the Cells data structure. |