(line: string)
| 115 | trailingSymbol: Doc.AnsiDoc |
| 116 | ) { |
| 117 | const annotateLine = (line: string): Doc.AnsiDoc => Doc.annotate(Doc.text(line), Ansi.bold) |
| 118 | const prefix = Doc.cat(leadingSymbol, Doc.space) |
| 119 | return Arr.match(message.split(NEWLINE_REGEX), { |
| 120 | onEmpty: () => Doc.hsep([prefix, trailingSymbol, confirm]), |
no test coverage detected
searching dependent graphs…