JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "is-email.ts"

Full Path: /home/markqprx/iniasli.pro/client/utils/string/is-email.ts
File size: 311 bytes
MIME-type: text/plain
Charset: utf-8

const matcher =
  /^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;

export function isEmail(string?: string): boolean {
  if (!string) return false;
  if (string.length > 320) return false;
  return matcher.test(string);
}