package helpers

import 

// Check if letters in string is unicode
func ( string) bool {
	for ,  := range  {
		if !unicode.IsLetter() {
			return false
		}
	}
	return true
}