isProfanity
A profanity checker which, unlike alternatives, uses the Wagner–Fischer algorithm in order to catch variations that you haven't thought of.

Installation
Installation is very simple due to isProfanity being on NPM. Simply type: npm install isprofanity
from a console in the project directory then add var isprofanity = require('isprofanity');
to the top of your project file.
##Usage
There is only one function in isProfanity. Calling it is a simple as typing:
isProfanity(s,function(t){
});
's' being the string that you want to check for profanity and 't' being the boolian callback.
For a full example usage, you can try out the following code, setting 's' as a string that you would like to test.
var s = "You absolute vanker";
isProfanity(s ,function(t){
b = t ? 'contains' : 'does not contain';
console.log('"'+s+'" '+b+' profanity');
process.exit();
});
##Advance Usage
isProfanity also contains the abilty to pass custom csv files for both profanity and exceptions. You can do this like so:
isProfanity(s,function(t){
},'data/profanity.csv','data/exceptions.csv');
While an exceptions file is not needed to replace the profanity list, it is recomended as some words to get flagged that are not swear words. (A notable example in the default set is 'while')

Follow me on twitter (@MVD_Vandie) or on github in order to keep track of my projects and releases.

Enjoy. :D