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