1// +build js nacl plan9
2
3package logrus
4
5import (
6	"io"
7)
8
9func checkIfTerminal(w io.Writer) bool {
10	return false
11}
12