Dirty russian/english words filter
npm install censure-jsJavaScript
// Searches if there any abusive words in the text
Censure.isBad('Original phrase with abusive words'); // return: bool
// Replace abusive words from string
Censure.replace('Original phrase with abusive words'); // return: string (cleaned text)
// Fixing abusive words inside string
Censure.fix('Original phrase with abusive words'); // return: string (fixed text)
``