| 12345678910111213 | // +build darwin dragonfly freebsd netbsd openbsd// +build !jspackage logrusimport "golang.org/x/sys/unix"const ioctlReadTermios = unix.TIOCGETAfunc isTerminal(fd int) bool {	_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)	return err == nil}
 |