Blame vendor/github.com/mattn/go-isatty/isatty_others.go

Packit Service 509fd4
// +build appengine js nacl
Packit Service 509fd4
Packit Service 509fd4
package isatty
Packit Service 509fd4
Packit Service 509fd4
// IsTerminal returns true if the file descriptor is terminal which
Packit Service 509fd4
// is always false on js and appengine classic which is a sandboxed PaaS.
Packit Service 509fd4
func IsTerminal(fd uintptr) bool {
Packit Service 509fd4
	return false
Packit Service 509fd4
}
Packit Service 509fd4
Packit Service 509fd4
// IsCygwinTerminal() return true if the file descriptor is a cygwin or msys2
Packit Service 509fd4
// terminal. This is also always false on this environment.
Packit Service 509fd4
func IsCygwinTerminal(fd uintptr) bool {
Packit Service 509fd4
	return false
Packit Service 509fd4
}