1.0.1 • Published 3 years ago

toxicity-filter v1.0.1

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

toxicity-filter

note: this is not meant to be used as a bad-words detection mechanism. This is meant to be used before testing with a more robust detection method

usage:

Module will return an array that can be used to search for words

regex example:

toxicityFilter = require('toxicity-filter')

testToxicity = (txt) => {}

toxicityExpression = new RegExp(`(${toxicityFilter.join('|')})`)

text = 'tell me your password'

if (text.match(toxicityExpression)) {
    testToxicity(text)
}