7 lines
129 B
Go
Raw Normal View History

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