You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mightBeEmail.js 325B

123456
  1. // See if s could be an email address. We don't want to send personal data like email.
  2. // https://support.google.com/analytics/answer/2795983?hl=en
  3. export default function mightBeEmail(s) {
  4. // There's no point trying to validate rfc822 fully, just look for ...@...
  5. return typeof s === 'string' && s.indexOf('@') !== -1;
  6. }