github.com/maresnic/mr-kong@v1.0.0/guesswidth.go (about)

     1  //go:build appengine || (!linux && !freebsd && !darwin && !dragonfly && !netbsd && !openbsd)
     2  // +build appengine !linux,!freebsd,!darwin,!dragonfly,!netbsd,!openbsd
     3  
     4  package kong
     5  
     6  import "io"
     7  
     8  func guessWidth(w io.Writer) int {
     9  	return 80
    10  }