Parse an email address into its components, based on component/url.
$ component install ianstormtaylor/email
var email = require('email');
email.parse('[email protected]');
{
local: 'johnny+nospam',
name: 'johnny',
filter: 'nospam',
domain: 'example.com'
}
Parse the given email string
.
Check if the given email string
has a +
filter.
MIT