in convert.go [297:305]
func isPrint(s string) bool { for _, c := range s { if !strconv.IsPrint(c) { return false } } return true }