(self: Doc.Doc<A>)
| 555 | describe.concurrent("reactive/conditional combinators", () => { |
| 556 | it("width", () => { |
| 557 | const annotate = <A>(self: Doc.Doc<A>): Doc.Doc<A> => |
| 558 | Doc.width(Doc.squareBracketed(self), (w) => Doc.text(` <- width: ${w}`)) |
| 559 | |
| 560 | const docs = [ |
| 561 | Doc.text("---"), |
no test coverage detected