OSDN Git Service

feat(warder): add warder backbone (#181)
[bytom/vapor.git] / vendor / github.com / mattn / go-isatty / isatty_others.go
1 // +build appengine js
2
3 package isatty
4
5 // IsTerminal returns true if the file descriptor is terminal which
6 // is always false on js and appengine classic which is a sandboxed PaaS.
7 func IsTerminal(fd uintptr) bool {
8         return false
9 }
10
11 // IsCygwinTerminal() return true if the file descriptor is a cygwin or msys2
12 // terminal. This is also always false on this environment.
13 func IsCygwinTerminal(fd uintptr) bool {
14         return false
15 }