act/vendor/github.com/sirupsen/logrus/terminal_check_js.go
Casey Lee 320e9b6057
fail on error (#20)
ci-via-github-actions
2019-01-23 11:51:22 -08:00

11 lines
105 B
Go

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