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
Hi everyone,
I've tried to add some words to the blacklist. I have an array containing bad words called BAD_WORDS. When I try to add it to the filter const filter = new Filter(); filter.addWords(BAD_WORDS)
I receive an error
The only way to make it works is to map an array and add words one by one
Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
Hi everyone,
I've tried to add some words to the blacklist. I have an array containing bad words called BAD_WORDS. When I try to add it to the filter
const filter = new Filter(); filter.addWords(BAD_WORDS)
I receive an error
The only way to make it works is to map an array and add words one by one
Am I doing something wrong?
The text was updated successfully, but these errors were encountered: