expletives
Version:
A list of expletives and some functions to test your strings for them
15 lines (13 loc) • 345 B
JavaScript
import { hasBadWords } from './dist/index.js';
// Shouldn't be bad
if (!hasBadWords('Hello World')) {
console.log('Hello World Test: PASSED');
} else {
console.log('Hello World Test: FAILED');
}
// Should be bad
if (hasBadWords('f4ck')) {
console.log('Profanity Test: PASSED');
} else {
console.log('Profanity Test: FAILED');
}