terminal_check_js.go raw

   1  // +build js
   2  
   3  package logrus
   4  
   5  func isTerminal(fd int) bool {
   6  	return false
   7  }
   8