Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 24x 4x | import { emailRegExpBuilder } from '../regexp'
const regExp = emailRegExpBuilder.build({ exact: true })
/**
* 检测传入值是否是邮箱地址。
*
* @public
* @param value 要检测的值
* @returns 返回检测结果
* @example
* ```typescript
* isEmail('xx@gmail.com') // => true
* isEmail('http://foo.bar') // => false
* ```
*/
export function isEmail(value: string) {
return regExp.test(value)
}
|