0.0.3 • Published 7 years ago

antispambotjs v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Antispambot JS

JavaScript implementation of WordPress PHP function. Converts selected email addresses characters to HTML entities to block spam bots. Not all characters in the email address are converted: the selection is random and changes each time the function is called.

Installation

$ npm i --save antispambotjs

Usage

antispambot(emailAddress, hexEncoding);

Example

import antispambot from 'antispambotjs';

let encoded = antispambot('test@test.com');

console.log(encoded); // test@test.com

License

MIT