()
| 114 | // overlay at the same y. Use `breakLine` whenever a true newline is |
| 115 | // intended (br, end-of-block, list items). |
| 116 | const flushLine = () => { |
| 117 | doc.text('', {continued: false}); |
| 118 | runStartedAligned = false; |
| 119 | }; |
| 120 | const breakLine = () => { |
| 121 | flushLine(); |
| 122 | doc.moveDown(1); |
no test coverage detected