1.0.2 • Published 8 years ago
grab-emails v1.0.2
Grab emails
Extract emails from multiline string
Installing
npm install --save grab-emailsUsage
const grabEmails = require("grab-emails");
const emailList = grabEmails(`
first email: first.email@example.com
2nd email: second+email@example.com
`);
console.log(emailList);Output
[ 'first.email@example.com', 'second+email@example.com' ]Running the tests
npm run testLicense
This project is licensed under the MIT License - see the LICENSE file for details