package utils import "unicode" func isASCII(s string) bool { for _, c := range s { if c > unicode.MaxASCII { return false } } return true }