UNPKG

profanity-checker-fr

Version:

French Profanity Filter is a lightweight and easy-to-use Node.js module to detect and filter offensive words (profanity, insults) in French sentences. Ideal for chat applications, comment moderation, and any service that requires clean user-generated cont

11 lines 507 B
/** * Export the `ProfanityChecker` class from the `profanityChecker.js` file. * This class is responsible for checking and censoring bad words in sentences. */ export { ProfanityChecker } from './profanityChecker.js'; /** * Export the `ProfanityConfig` class from the `profanityConfig.js` file. * This class is used for configuring global settings such as bad words, censor character, and whitelisted words. */ export { ProfanityConfig } from './profanityConfig.js'; //# sourceMappingURL=index.js.map