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

Tree @e87645f (Download .tar.gz)

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