9 lines
174 B
Go
Raw Permalink Normal View History

2025-02-16 17:28:10 +01:00
//go:build !darwin && !freebsd && !linux && !windows
package tty
// IsTerminal is always false on unsupported platforms.
func IsTerminal(fd uintptr) bool {
return false
}