UNPKG

s-valid

Version:
5 lines (4 loc) 104 B
const regex = /^[a-z]+$/i; export default function(s: string) { return regex.test(s.toLowerCase()); };