(lines)
| 121 | } |
| 122 | |
| 123 | function renderBox(lines) { |
| 124 | const out = [boxBorder('╭', '╮'), boxLine('')]; |
| 125 | for (const line of lines) out.push(boxLine(line)); |
| 126 | out.push(boxLine(''), boxBorder('╰', '╯')); |
| 127 | return out; |
| 128 | } |
| 129 | |
| 130 | function emit(lines) { |
| 131 | notify(''); |
no test coverage detected