bleeeepifier
v1.0.0
Published
Bleeeep out bad words. Based of off f**k.js
Downloads
14
Readme
Bleeeeepifier
Censors bad words.
const b = require('bleeeepifier')
const placeholder_for_bad_words = 'bleeeeep'
const filtered = b(your_string_to_filter, placeholder_for_bad_words)
// to check if it has bad words
if (filtered.indexOf(placeholder_for_bad_words) !== -1) {
alert('No bad words')
}