color/tty/Terminal_other.go
2025-06-06 17:05:55 +02:00

8 lines
No EOL
173 B
Go

//go:build !darwin && !freebsd && !linux && !windows
package tty
// IsTerminal is always false on unsupported platforms.
func IsTerminal(fd uintptr) bool {
return false
}