util.go

1package tea
2
3import "runtime"
4
5// isWindows return whether the current runtime is Windows.
6func isWindows() bool {
7	return runtime.GOOS == "windows"
8}