tipitypy/colorizer/eraser.go

8 lines
87 B
Go
Raw Normal View History

2025-02-15 23:56:53 +01:00
package colorizer
import "fmt"
func ClearFromCursorToEnd() {
fmt.Printf("\033[K")
}