@phyouthcenter1/bad-words-filter
v1.0.2
Published
Profanity Filter allows you to implement an easy system into your bot! Example: const discord = require('discord.js'); const client = new discord.Client(); const pf = require('profanity-filter'); client.on('message', (message) => pf.message(message));
Downloads
2
Maintainers
Readme
Profanity Filter allows you to implement an easy system into your bot!
Example:
const discord = require('discord.js'); const client = new discord.Client(); const pf = require('profanity-filter'); const token = "bot-token"
client.on('message', (message) => pf.message(message));
client.login(token)