Drop leading whitespace so a stripped leading block leaves no blank top lines.
(c: string)
| 222 | |
| 223 | /** Drop leading whitespace so a stripped leading block leaves no blank top lines. */ |
| 224 | private emit(c: string): string { |
| 225 | if (!this.emittedVisible && /\s/.test(c)) return ''; |
| 226 | this.emittedVisible = true; |
| 227 | return c; |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | /** |
no outgoing calls
no test coverage detected