mirror of
https://github.com/golang/term.git
synced 2026-02-09 04:06:04 +03:00
Change-Id: I8ff21952a72f3f5838c9959f00d9f4c8b4b45d2d Reviewed-on: https://go-review.googlesource.com/c/term/+/201117 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
12 lines
245 B
Go
12 lines
245 B
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build js,wasm nacl
|
|
|
|
package term
|
|
|
|
func isTerminal(fd int) bool {
|
|
return false
|
|
}
|