320e9b6057
ci-via-github-actions
11 lines
105 B
Go
11 lines
105 B
Go
// +build js
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return false
|
|
}
|