1// +build !windows
2
3package term
4
5import "io"
6
7// NewColorWriter returns an io.Writer that writes to w and provides cross
8// platform support for ANSI color codes. If w is not a terminal it is
9// returned unmodified.
10func NewColorWriter(w io.Writer) io.Writer {
11	return w
12}
13