forked from mirror/logrus
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
|
||
|
}
|