A list of expletives and some functions to test your strings for them
npm install expletivesjavascript
// Simple list of words
import { badWords } from 'expletives';
console.log("Every bad word you can think of", badWords);// Check a string
import { hasBadWords } from 'expletives';
if (!hasBadWords('Hello World')) {
console.log('Clean as a whistle');
}
if (hasBadWords('f4ck')) {
console.log('Dirty as a doorknob');
}
`API
`typescript
// import any of these into your project as needed
const exports = {
badWords: string
badWordsArray: string[]
minimalBadWordsArray: string[]
hasBadWords: (string) => true,
nazi: (string) => true,
nword: (string) => true
};
``#### Contribution Ideas
- Sensitive words and phrases that might not be outright offensive
- Group different kinds of offensive together
#### Note on Filtering by Word Match
"Bad words" implementations are prone to the Scunthorpe Problem - please use with care