All purpose text cleaner
npm install kevbook.text-cleanup__All purpose Text-cleanup for nodeJS apps.__
* Strips html tags (similar to PHP 5.5's strip_tags, php_strip_tags_ex)
* Normalizes whitepsace characters to \t \n and space
* Trims each paragraph
#### Usage
``js
var textCleanup = require('kevbook.text-cleanup');
// Cleaned text
console.log(textCleanup('some text'));
``