7 lines
129 B
Go
Raw Normal View History

2024-03-12 00:25:20 +01:00
package tty
// IsTerminal returns true if the file descriptor is a terminal.
func IsTerminal(fd uintptr) bool {
return false
}