Files
gocast/vendor/github.com/sirupsen/logrus/terminal_check_js.go
2019-10-16 15:57:55 -07:00

12 lines
105 B
Go

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