Files
logrus/terminal_check_js.go
T
2018-08-06 00:43:49 +08:00

12 lines
105 B
Go

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