Files
lightwalletd/vendor/github.com/sirupsen/logrus/terminal_check_js.go
George Tankersley 7726a6752d cleanup: rename package and vendor dependencies for old go versions
Fixes #8 and begins to address deployability.
2019-01-03 19:14:51 +00:00

12 lines
105 B
Go

// +build js
package logrus
import (
"io"
)
func checkIfTerminal(w io.Writer) bool {
return false
}