UNPKG

hd-utils

Version:

A handy utils for modern JS developers

5 lines (4 loc) 151 B
import { emailRegexForShortStr } from "../../regex/index"; export default function isEmail(input) { return !!input.match(emailRegexForShortStr); }