Add terminal_check_js.go file, for compatibility with GopherJS

This commit is contained in:
Jonathan Hall
2019-09-19 11:06:10 +02:00
parent de736cf91b
commit 305ec52856
3 changed files with 9 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
// +build js
package logrus
func isTerminal(fd int) bool {
return false
}