Codebase list golang-github-vbauerster-mpb / b53c5f0 cwriter / writer_posix.go
b53c5f0

Tree @b53c5f0 (Download .tar.gz)

writer_posix.go @b53c5f0raw · history · blame

// +build !windows

package cwriter

import (
	"io"
	"strings"
)

func (w *Writer) clearLines() error {
	_, err := io.WriteString(w.out, strings.Repeat(clearCursorAndLine, w.lineCount))
	return err
}