2
0
mirror of https://github.com/elisescu/tty-share synced 2024-11-17 21:25:33 +00:00
tty-share/vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go
2020-01-09 21:34:35 +01:00

12 lines
116 B
Go

// +build js nacl plan9
package logrus
import (
"io"
)
func checkIfTerminal(w io.Writer) bool {
return false
}