gonextcloud/vendor/github.com/sirupsen/logrus/terminal_check_js.go
2019-01-03 14:15:11 +01:00

12 lines
105 B
Go

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