Files
scrutiny/vendor/github.com/sirupsen/logrus/terminal_check_js.go
T
2020-08-21 06:31:48 +00:00

12 lines
105 B
Go

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