UNPKG

get-emails

Version:
7 lines (5 loc) 195 B
import emailRegex from 'email-regex'; export default function getEmails(string) { const emails = string.match(emailRegex()); return new Set(emails ? emails.map(email => email.trim()) : []); }