do-not-hate
v1.0.1
Published
This changes hate words to love words
Readme
Do not hate
This module changes hate words into love words
How to use this module?
In your app install this module by npm install do-not-hate --save
Then, require this file using var noHate = require('do-not-hate');
Then, the string that contains hate words, lets say hateString can be converted to a good string using var loveString = noHate.lovify(hateString);
Example
var noHate = require('do-not-hate');
var hateString = "I hate her because she has always hated me.";
var loveString = noHate.lovify(hateString);
console.log(loveString);
//this will log "I love her because she has always loved me.""