0.0.11 • Published 6 years ago

obfuscate v0.0.11

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

obfuscate

An intelligent function to obfuscate any contact link

Why

The world needs obfuscated links that display the link in a friendly way.

Installation

npm install --save obfuscate

Usage

var obfuscate = require('obfuscate')

...

return html`
    <p>
        Email: ${obfuscate({
            email:'hello@coston.cool', 
            subject:'Question from the website', 
            cc:'friend@coston.cool'
        })}
    </p>
  `

Output

Robot Interaction

<p>
  Email: <a href="obfuscated">looc.notsoc@olleh</a>
</p>

Human Interaction

<p>
  Email: <a href="mailto:hello@coston.cool&subject=Question%20from%20the%20website&cc=friend@coston.cool">hello@coston.cool</a>
</p>

Options

KeyValue
emailemail address of the intended recipient
ccemail address to carbon copy email to
bccemail address to blind carbon copy to
subjectsubject of email
bodybody text of email
0.0.11

6 years ago

0.0.10

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

7 years ago