0
1
GGGiovanny Gongora
Checks if a string contains only alpha characters.
0 Comments
const isAlpha = (str: string) => /^[a-zA-Z]*$/.test(str);