//go:build !windows && !appengine
// +build !windows,!appengine

package colorable

import (
	
	

	_ 
)

// NewColorable returns new instance of Writer which handles escape sequence.
func ( *os.File) io.Writer {
	if  == nil {
		panic("nil passed instead of *os.File to NewColorable()")
	}

	return 
}

// NewColorableStdout returns new instance of Writer which handles escape sequence for stdout.
func () io.Writer {
	return os.Stdout
}

// NewColorableStderr returns new instance of Writer which handles escape sequence for stderr.
func () io.Writer {
	return os.Stderr
}

// EnableColorsStdout enable colors if possible.
func ( *bool) func() {
	if  != nil {
		* = true
	}
	return func() {}
}