Helps protect e-mail addresses from spambots
$ npm install email-encoder
const emailEncoder = require('email-encoder');
emailEncoder('My email is my-email@example.com');
//=> 'My email is my-email@example.com'Type: string
$ npm install --global email-encoder
$ email-encoder 'My email is my-email@example.com'
My email is my-email@example.com
$ email-encoder --help
Usage
email-encoder [input]
Examples
$ email-encoder "Hello, world!"
// -> "Hello, world!"
$ email-encoder "My e-mail is hello@example.com"
// -> My e-mail is hello@example.com
MIT © DecentM