9 lines
105 B
Go
9 lines
105 B
Go
|
//go:build !windows
|
||
|
// +build !windows
|
||
|
|
||
|
package text
|
||
|
|
||
|
func areANSICodesSupported() bool {
|
||
|
return true
|
||
|
}
|