public line()

in src/code.ts [23:28]


  public line(text: string = ''): void {
    const line = text.length > 0
      ? ' '.repeat(this.indent) + text // only indent if line has content
      : text;
    this.lines.push(line.trimEnd());
  }