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

Tree @f9063a1 (Download .tar.gz)

writer_posix.go @f9063a1raw · 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
}