Te sugerimos que pruebes esta respuesta en un ambiente controlado antes de pasarlo a producción, un saludo.
Ejemplo: Cómo hacer un filtro de malas palabras en JavaScript
/*
This code comes from Vincent Lab
And it has a video version linked here: https://www.youtube.com/watch?v=spBRgujJ3xw
*/// Import dependenciesconstFilter=require("bad-words");// Make a new filterconst filter =newFilter();// https://www.cs.cmu.edu/~biglou/resources/// Add extra words to the bad words listconst words =require("./extra-words.json");
filter.addWords(...words);// Test the bad words filterconsole.log(filter.clean("Don't be an ash0le"));console.log(filter.clean("You fucking mother fucker"));console.log(filter.clean("You are a son of a whore"));console.log(filter.clean("You fucking fucknut"));console.log(filter.clean("fucking cunt"));console.log(filter.clean("You are a shit ass"));console.log(filter.clean("This fucking product is unbelievable"));console.log(filter.clean("You are a bitch"));
Nos puedes auxiliar nuestro estudio ejecutando un comentario o puntuándolo te damos la bienvenida.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)