This commit is contained in:
Pan 2018-04-15 21:01:03 +08:00
parent 7099e6a3eb
commit a160848367
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ export function validateUpperCase(str) {
} }
/* 大小写字母*/ /* 大小写字母*/
export function validatAlphabets(str) { export function validateAlphabets(str) {
const reg = /^[A-Za-z]+$/ const reg = /^[A-Za-z]+$/
return reg.test(str) return reg.test(str)
} }