You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@tgreco, There is an option to set your minimum sureness rating to block. Take a look at the docs, I never did quite find the perfect rating. someone always found somthing that shouldn't be blocked or shouldn't be. you're best tweaking it for your own personal usage.
also a sensativity of 0.01 means that it requires a sureness of 0.01 or higher...
I'm using the word bongo and it's failing for the word homo, with a sensitivity of 0.01.
var isprofanity = require("isprofanity")
isprofanity('bongo', function(t, blocked)
{
console.log(t)
console.log(blocked[0])
}, 0.01);
My solution:
isprofanity('bongo', function(t, blocked)
{
if(blocked[0].sureness > 0.66)
{
console.log("True");
}
}, 0.25);
The text was updated successfully, but these errors were encountered: