Codebase list golang-github-go-kit-kit / 203e4782-15ed-484f-9517-a1c12654c5bc/v0.2.0 log / term / colorwriter_others.go
203e4782-15ed-484f-9517-a1c12654c5bc/v0.2.0

Tree @203e4782-15ed-484f-9517-a1c12654c5bc/v0.2.0 (Download .tar.gz)

colorwriter_others.go @203e4782-15ed-484f-9517-a1c12654c5bc/v0.2.0raw · history · blame

// +build !windows

package term

import "io"

// NewColorWriter returns an io.Writer that writes to w and provides cross
// platform support for ANSI color codes. If w is not a terminal it is
// returned unmodified.
func NewColorWriter(w io.Writer) io.Writer {
	return w
}