eed1c0f832
The GopherJS build tag is "js" not "gopherjs" Signed-off-by: Christian Stewart <christian@paral.in>
12 lines
124 B
Go
12 lines
124 B
Go
// +build js
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func (f *TextFormatter) checkIfTerminal(w io.Writer) bool {
|
|
return false
|
|
}
|