Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }