8 lines
No EOL
173 B
Go
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
|
|
} |