This website requires JavaScript.
Explore
Help
Sign In
re
/
logrus
forked from
mirror/logrus
Watch
1
Star
0
Fork
You've already forked logrus
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
56da607151
logrus
/
terminal_check_js.go
12 lines
105 B
Go
Raw
Normal View
History
Unescape
Escape
Fix GopherJS build tags The GopherJS build tag is "js" not "gopherjs" Signed-off-by: Christian Stewart <christian@paral.in>
2018-06-21 07:39:23 +03:00
// +build js
package
logrus
import
(
"io"
)
Keep terminal check naming convention
2018-08-05 19:43:49 +03:00
func
checkIfTerminal
(
w
io
.
Writer
)
bool
{
Fix GopherJS build tags The GopherJS build tag is "js" not "gopherjs" Signed-off-by: Christian Stewart <christian@paral.in>
2018-06-21 07:39:23 +03:00
return
false
}