mirror of
https://github.com/mudler/luet.git
synced 2025-06-30 09:12:15 +00:00
12 lines
113 B
Go
12 lines
113 B
Go
|
// +build js nacl plan9
|
||
|
|
||
|
package terminal
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
func IsTerminal(w io.Writer) bool {
|
||
|
return false
|
||
|
}
|