()
| 290 | } |
| 291 | |
| 292 | toString(): string { |
| 293 | const body = this.sources |
| 294 | .map((source, i) => { |
| 295 | const separator = source.separator !== undefined ? source.separator : this.separator |
| 296 | const str = (i > 0 ? separator : '') + source.content.toString() |
| 297 | |
| 298 | return str |
| 299 | }) |
| 300 | .join('') |
| 301 | |
| 302 | return this.intro + body |
| 303 | } |
| 304 | |
| 305 | isEmpty(): boolean { |
| 306 | if (this.intro.length && this.intro.trim()) |
nothing calls this directly
no outgoing calls
no test coverage detected