kubernetes/vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go

// +build js nacl plan9

package logrus

import (
	"io"
)

func checkIfTerminal(w io.Writer) bool {
	return false
}