mirror of
https://github.com/vbatts/go-mtree.git
synced 2025-02-24 11:39:02 +00:00
```shell dep ensure -update ``` Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
11 lines
105 B
Go
11 lines
105 B
Go
// +build js
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return false
|
|
}
|